예제 #1
0
파일: Program.cs 프로젝트: ThinhVu/Mmosoft
        static void Main(string[] args)
        {
            var p = new Person();

            // store value 5 (int) in private store with prop "age"
            p.Set("age", 5);
            // get value from prop "age"
            p.Get <int>("age");

            Console.Read();
        }