mirror of
https://github.com/github/codeql.git
synced 2026-05-05 21:55:19 +02:00
11 lines
218 B
C#
11 lines
218 B
C#
using System;
|
|
using System.Windows.Forms;
|
|
|
|
public partial class ManagedCodeExample : Form
|
|
{
|
|
private void btnSayHello_Click(object sender, EventArgs e)
|
|
{
|
|
MessageBox.Show("Hello World", "Title");
|
|
}
|
|
}
|