CSharp examples for Custom Type:Inner Type
The code for the nested Point type is as follows:
class Line { public class Point { public int x; public int y; } public Point starting = new Point(); public Point ending = new Point(); }