摘要: 1: public class Person 2: { 3: public string Name { get; set; } 4: public int Age { get; set; } 5: } 6: 7: public static class ReferenceAndValue 8: { 9: public static void Demonstration() 10: { 11: Person zerocool = new Person { Name = "ZeroCool", Age = 25... 阅读全文
posted @ 2012-09-11 16:15 倩影 阅读(180) 评论(0) 推荐(0)