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