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.
Address という名前のリストが 1 つあります。ここで、Address.Zip = 822 の Address.City 名が必要です。Select query in list を使用して、住所リストから都市の名前にアクセスするにはどうすればよいですか?
これは非常に簡単な LINQ です。
string city = Address .Where(a => a.Zip == 822) .Select(a => a.City) .FirstOrDefault();
試す、
Address obj = list.FirstOrDefault(o => o.Zip == 822); if (obj != null) { string city = obj.City; }