Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
list(Tuple<string, class>)タプルの文字列アイテムの値を昇順で並べ替えるにはどうすればよいですか?
list(Tuple<string, class>)
var ordered = myList.OrderBy(t => t.Item1).ToList();
list.OrderBy(x => x.Item1);
あなたstringがにいると仮定しますItem1。
string
Item1