摘要:
1.自动属性 键入prop,再按两次tab键,会生成自动属性代码。 public int MyProperty { get; set; }通过实验发现,输入pr,pro,proc等,再按两次tab键,同样会生成自动属性代码段。 2.class 键入class,再按两次tab键,会生成类定义代码。 c 阅读全文
摘要:
组元功能:传递多个值。 1.可以取代out //使用out public void Test(out int a,out string b) { a=1; b="hello world" } //使用Tuple public Tuple<int,string> Test() { return new 阅读全文