使用var的場合
2015年1月5日 星期一
var 可用在暱名型別上,強型別或稱右(後)決議型別,只能做為宣告區域變數使用,一定要定義右邊的型態
編譯時期才做轉型
var x = new object();
//編譯時
object x = new object();
範例如下:
//使用var的場合
static void main(string[] args)
{
string[] words = { "apple","cherry","blueberry"};
var newwords = words.select(w => new { upper = w.toupper(), lower = w.tolower() });
foreach (var item in newwords)
{
console.writeline(item.lower + ":" + item.upper);
}
console.readkey();
}
0 意見:
張貼留言