I have the following code:
foreach(Icon item in iconObjects)
{
iconList.Add(item.iconID); //iconID is a GUID string
}
I'm finding 197 records. It takes ~10 seconds to execute the loop and
populate the list. Any thoughts on improving the performance?
I've tried:
iconList.AddRange(iconObjects.Select(y=> y.iconID))
But it takes the same amount of time.
Thanks,
Rick
--
View this message in context:
http://monotouch.2284126.n4.nabble.com/Performance-question-tp4656453.html
Sent from the MonoTouch mailing list archive at Nabble.com.
_______________________________________________
MonoTouch mailing list
[email protected]
http://lists.ximian.com/mailman/listinfo/monotouch