Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

get item from icollection

var foo = myICollection.OfType<YourType>().FirstOrDefault();
// or use a query
var bar = (from x in myICollection.OfType<YourType>() where x.SomeProperty == someValue select x)
	.FirstOrDefault();
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #item #icollection
ADD COMMENT
Topic
Name
8+7 =