![]() |
От: | vaa | https://www.youtube.com/playlist?list=PLtrvASfI1KW7VOYRKjglcagQzWLoxlncl |
Дата: | 09.03.22 03:29 | ||
Оценка: |
List<FooBar>? fooList = FooListFactory.GetFooList();
FooBar fooBar = fooList!.Find(f => f.Name=="Bar")!;
FooBar? fooBar = fooList?.Find(f => f.Name=="Bar");