= new Car(1, 4); Car yourCar = new Car(1, 3); And these statements are roughly the same as these instructions: ldc.i4.1 ldc.i4.4 newobj instance void Car::.ctor(int, int) stloc.0 // myCar = new Car(1, 4); ldc.i4.1 ldc.i4.3 newobj instance void Car::.ctor(int, int) stloc.1 // yourCar = new Car(1, 3); Microsoft Intermediate Language (MSIL)