mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
15 lines
287 B
C#
15 lines
287 B
C#
using System.Windows.Forms;
|
|
|
|
class Good
|
|
{
|
|
private string title;
|
|
private string name;
|
|
|
|
public void DisplayDetails()
|
|
{
|
|
var boxTitle = "Person Details";
|
|
var message = "Title: " + title + "\nName: " + name;
|
|
MessageBox.Show(message, boxTitle);
|
|
}
|
|
}
|