List 在 c# 中非常好用,其中加入一般類型皆可之外,還可加入物件,以下寫個簡單的範例供參考:
C#:
public class tempcls{
public int first{ get; set; }
public int second{ get; set; }
public tempcls(int x, int y) // Constructor
{
this.first = x;
this.second = y;
}
public string replyAnswer( )
{
return (this.first + this.second).ToString( ); // 求和
}
}
List<tempcls> alist = new List<tempcls>( ){ new tempcls(3,4),
new tempcls(5,6), new tempcls(9,8)};
alist.ForEach(x => MessageBox.Show(x.replayAnswer)); // 利用 Lambada 及 ForEach 將結果 7 11 17 顯示出來
C#:
public class tempcls{
public int first{ get; set; }
public int second{ get; set; }
public tempcls(int x, int y) // Constructor
{
this.first = x;
this.second = y;
}
public string replyAnswer( )
{
return (this.first + this.second).ToString( ); // 求和
}
}
List<tempcls> alist = new List<tempcls>( ){ new tempcls(3,4),
new tempcls(5,6), new tempcls(9,8)};
alist.ForEach(x => MessageBox.Show(x.replayAnswer)); // 利用 Lambada 及 ForEach 將結果 7 11 17 顯示出來
留言
張貼留言