Quiz: More Type Constructors

The program below outputs “in .cctor” when run. In the spirit of NPR’s Says You, make a 6 character change to only line 10 that will allow the program to continue to compile without warnings or errors but when run result in no output. Any of course, why?

 

  00 using System;

 01 public class Program

 02 {

 03 static void Main(string[] args)

 04 {

 05 Type1 t = new Type1();

 06

 07 }

 08 }

 09

 10 public class Type1

 11 {

 12 static Type1()

 13 {

 14 Console.WriteLine ("in .cctor");

 15 }

 16 }