Search Results

1
vote
1answer
102 views

Upcasting to a generic object from system.object

Hello! I have some simple code which demonstrates my problem: private void InitializeOther() { List<Foo> list = new List<Foo>(); Casting(list); } //in the " …