Skip to content

Instantly share code, notes, and snippets.

@kawakawa
Created August 29, 2012 05:54
Show Gist options
  • Save kawakawa/3507275 to your computer and use it in GitHub Desktop.
Save kawakawa/3507275 to your computer and use it in GitHub Desktop.
var list=new List<string>
{
"リンゴ",
"オレンジ",
"パイナップル"
};
//toDictionary(int,string)に変換
var dic = list.Select((n, index) => new { index, n})
.ToDictionary(n => n.index, n => n.n);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment