Files
codeql/csharp/ql/src/Bad Practices/CallsUnmanagedCodeFix.cs
2018-08-02 17:53:23 +01:00

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");
}
}