Example #1
0
 static ClassB()
 {
     // str = "t4 2";
     Sometype t1 = new Sometype("t4 2 ");
 }
Example #2
0
 public new void Myfunc()
 {
     // str = "t5 2";
     Sometype t1 = new Sometype("t5 2 ");
 }
Example #3
0
 public ClassB()
 {
     // str = "t3 2";
     Sometype t1 = new Sometype("t3 2 ");
 }
Example #4
0
 public void Myfunc()
 {
     // str = "t5";
     Sometype t1 = new Sometype("t5 ");
 }
Example #5
0
 static ClassA()
 {
     // str = "t4";
     Sometype t1 = new Sometype("t4 ");
 }
Example #6
0
 public ClassA()
 {
     // str = "t3";
     Sometype t1 = new Sometype("t3 ");
 }
 static void Main()
 {
     Sometype thing = JsonConvert.DeserializeObject <Sometype>("{\"pos\":123}");
 }