摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication1{ class Program { static void Main(string[] args) { Person p = new Person(); //链式编程 p.Sayhi().Hello(); Console.ReadKey(); } } class Person { public int Age { get; set; } public string Name 阅读全文
posted @ 2013-07-26 00:23 nqsan 阅读(167) 评论(0) 推荐(0) 编辑