new operator creates a new object.
class human { public int age; public string sex; public human(int a, string s) {age=a;sex=s;} } human sophia = new human(22,"female");
delegate void f(int i); f dg = new f(8);
int[] arr = new int[4];