1. 程式人生 > >C#的Tuple

C#的Tuple

etime string類型 多個 相同 string col 區別 logs 沒有

 Tuple<string, string, string, int, DateTime> s = new Tuple<string, string, string, int, DateTime>("a","b","c",1,DateTime.Parse("2017-8-23"));  


一種class,當成string類型用,區別是可以存儲多個不同或相同的數據類型,並且沒有key的限制
(1)可以用於方法的返回值中,返回多個不同(類型)的值,就不用out,ref等關鍵字。out,ref 太單一。
(2)線程中傳參,就不用傳對象類型的了。一個tuple搞定


C#的Tuple