標籤:
1.初始化器:className variableName = new className(property1=value1…);
2.var可以聲明一個沒有類型的變數,根據賦值的不同改變資料類型
3.匿名方法,如果一個類用的少,可以省略類名,直接建立執行個體化
4.擴充方法:支援給基礎類添加方法
//匿名方法例子static void Main(string[] args) { var class1 = new { name = "jack", age = 15, gender = "man" }; Console.WriteLine(class1.name+class1.age+class1.gender); for (;;) ;}
另一個例子
public static class StringExtension { //擴充類名,必須靜態類 public static string ExtensionFunction(this string input) {//必須有參數,表示調用擴充方法的類執行個體 return "Hello "+input; } } class Program { static void Main(string[] args) { string str = "this is a string"; Console.WriteLine(str.ExtensionFunction());//輸出Hello this is a string for (;;) ; } }
Lanmda運算式
Lanmuda運算式:是用來簡化匿名方法,由三個部分構成:1.放在括弧內的參數列表(未類型化,可以推斷參數)2.=>運算子 3.C#語句
delegate int CalculateDelegate(int a, int b);//構建兩個參數委託 class Program { static void CalculateFunction(CalculateDelegate cal) { int a = 100, b = 100; Console.WriteLine(cal(a,b)); } static void Main(string[] args) { Program.CalculateFunction((a,b)=>a+b);//輸出200 Program.CalculateFunction((a, b) => a * b);//輸出10000 CalculateDelegate c; c = (a, b) => a + b; //相當於構建函數 Console.WriteLine(c(10,10));//輸出20 for (;;) ; } }
C#3.0新特性