using System.Collections.Generic;
public void DoSomeThingWithB(B b) => this.DoSomeThingWithA(b.PropA);
public void DoSomeThingWithA(A a)
public static void Print(IEnumerable<int> mt)
public static void Main()
Console.WriteLine("Hello World");
Console.WriteLine(c.PropB.PropA.X);
Action<B> actB = c.DoSomeThingWithB;
IList<int> intList = new List<int>(){1,2,3};
int[] arrInt = new int[]{10,20,30};