using System.Collections.Generic;
interface A { string MyProp();}
public string MyProp(){return _myProp;}
public AImpl(string s){_myProp = s;}
IList<A> listOfA = new List<A>{new AImpl("B1"), new AImpl("B2")};
Console.WriteLine(b.MyProp());
public static void Main()