c#糖衣代碼

來源:互聯網
上載者:User

標籤:

1 自動屬性
public class Student
{
public int ID{get;set;}
}

2 隱式類型(類型推斷)
關鍵字 var(在編譯的時候已經確定變數的類型了,編譯時間把推斷的類型替換掉var。並不是弱類型)
作用:只是方便程式員
var i=5;//int
注意:
不能作為類成員的類型
不能作為方法的參數
不能作為傳回值
(只能作為局部變數的類型推斷)

3 匿名型別
var p1=new {Id=1,Name="coco",Age=22};匿名類中的成員是唯讀seal類型的
數組
var intArray=new []{2,3,4,5};
var atrArray=new []{"Hellp","coco"};
var objArray=new[]{new {Name="coco",Age=12},new {Name="bingbing",Age=95}};
var a=intArray[0];

4
對象與集合初始化器
Student stu=new Student(){Id=1,Name="coco",Age=99}//更方便給對象賦值
集合初始化器
List<int>num=new List<int>(){0,1,23,4};
list<student>stus=new list<student>(){new student{Id=1,Name="coco",Age=123},new student{Id=2,Name="kkk",Age=17}};

5 擴充方法(linq中用的很多)
擴充方法主要是在類中另寫一個靜態方法,使用者不用更改類就可以直接點出來。一般不會用到
聲明擴充方法的步驟:
類必須是static,方法是static,第一個參數是擴充的對象,前面個標註的是this(this 參數類型 參數名)。
使用擴充方法必須保證擴充方法已經在當前代碼中(即要有相同的命名空間)

擴充方法不屬於擴充類的成員,也訪問不到要擴充的類的私人變數
eg:
//定義
public static class StingExt
{
pulic static bool isEmail(this string str)
{
return Regex.IsMatch(str,@"^\[email protected]\w+\.\w+$");
}
}
//使用
string email="[email protected]"
cw{emial.IsEmail();}

c#糖衣代碼

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.