tests/TestApplication.cs
using System;
namespace WinDbgModule { public class TestApplication { public static void Main(string[] args) { TestClass myClassInstance = new TestClass(); while(true) { System.Threading.Thread.Sleep(1000); } } } public class TestClass { public int MyTestInt = 10; public string MyTestString = "Hello World"; public TestEnum MyTestEnum = TestEnum.FirstValue; public static System.Diagnostics.Process MyProcess = System.Diagnostics.Process.GetCurrentProcess(); public TestClass() { } } public enum TestEnum { FirstValue, SecondValue = 10, ThirdValue = 100, } } |