Files
codeql/csharp/ql/test/resources/stubs/System.Windows.cs
Tom Hvitved 0c1db6afc3 C#: Add more CFG tests
Added tests for exits inside `try` statements and constantly failing assertions.
2018-10-19 14:05:30 +02:00

19 lines
335 B
C#
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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() { }
}
}