read dictionary values

Solutions on MaxInterview for read dictionary values by the best coders in the world

showing results for - "read dictionary values"
Iliana
15 Mar 2016
1// using indexer
2var name = dict["FirstName"];
3
4// as property
5var name = dict.FirstName;
6
similar questions
queries leading to this page
read dictionary values