CSharp examples for Custom Type:static
Declare a member function as static.
using System;/* w ww . j a v a 2s. c om*/ class StaticVar { public static int num; public void count() { num++; } public static int getNum() { return num; } } class StaticTester { static void Main(string[] args) { StaticVar s = new StaticVar(); s.count(); s.count(); s.count(); Console.WriteLine("Variable num: {0}", StaticVar.getNum()); } }