Contact: aviboots(AT)netvision.net.il
39,924 questions
51,857 answers
573 users
using System; namespace ConsoleApplication_C_Sharp { class Test { public int _n; public void Show() { Console.WriteLine(_n); } } class Program { static void Main(string[] args) { Test t = new Test(); t._n = 1000; t.Show(); } } } /* run: 1000 */