0
votes
3answers
200 views
Effect of casting to int in C#
Could someone take the time to explain me the language underpinnings here :
int foo = myObject.SomeList.Count;
for (int i = 0 ; i < foo ; i++)
{
myObject.SomeList.Add(bar);
}
…
