I\'ve created two classes, with one of them having an implicit cast between them:
public class Class1 { public int Test1; } public class Class2 { pu
A solution could be to use a bit of linq'ing here if you really need this kind of conversion:
List items = new List{new Class2{Test2 = 9}}; foreach (Class1 item in (from x in items select (Class1)x)) { Console.WriteLine(item.Test1); }