public class MyClass
{
public static int GlobalVariable;
private static int testProperty;
public static void ShowMessage(string message)
{
Console.WriteLine(DateTime.Now.ToString("HH:mm:ss") + " -> " + message);
MessageBox.Show(message);
}
public static int TestProperty
{
get{return testProperty;}
set{testProperty = value;}
}
}