mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 22:12:25 +00:00
21 lines
No EOL
438 B
C#
21 lines
No EOL
438 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace BreakpointsKernel
|
|
{
|
|
public class MyTestClass
|
|
{
|
|
static MyTestClass()
|
|
{
|
|
Cosmos.Debug.Debugger.Send("In MyTestClass..cctor");
|
|
}
|
|
|
|
public static int Value = 43;
|
|
|
|
public static void DoTest()
|
|
{
|
|
Cosmos.Debug.Debugger.Send("In MyTestClass.DoTest");
|
|
}
|
|
}
|
|
} |