mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01:00
19 lines
335 B
C#
19 lines
335 B
C#
|
||
namespace System.Windows.Forms
|
||
{
|
||
public class HtmlElement
|
||
{
|
||
public void SetAttribute(string attributeName, string value) { }
|
||
}
|
||
|
||
public class MessageBox
|
||
{
|
||
public static void Show(string msg, string title) { }
|
||
}
|
||
|
||
public class Application
|
||
{
|
||
public static void Exit() { }
|
||
}
|
||
}
|