摘要:
System.Collections.Generic.Dictionary dic = new Dictionary() { {1,"a"}, {2,"b"}, }; 阅读全文
摘要:
class Program { static void Main(string[] args) { Cat c = new Cat { Age = 1, Name = "asdf" }; Console.WriteLine(c.Age +" "+c.Name ); } ... 阅读全文
摘要:
http://www.cnblogs.com/zenghongliang/archive/2010/06/28/1766629.html 阅读全文
摘要:
http://www.cnblogs.com/zenghongliang/archive/2010/06/28/1766615.html 阅读全文
摘要:
public BankAccount(int accountAge, int creditScore, AccountInterest accountInterest) { AccountAge = accountAge; CreditScore = creditScore; AccountInterest = accountInterest; } public i... 阅读全文