using System;
namespace ConsoleApplication_C_Sharp
{
public static class Test
{
public static int n = 0;
public static void ShowStaticMember()
{
Console.WriteLine(n);
}
}
class Program
{
static void Main(string[] args)
{
Test.n = 100;
Test.ShowStaticMember();
}
}
}
/*
run:
100
*/