예제 #1
0
파일: Bool.cs 프로젝트: gavin-zyi/Rin
 static Bool()
 {
     True = new Bool(true);
     False = new Bool(false);
     Get = typeof(Bool).GetMethod("GetInstance", BindingFlags.NonPublic | BindingFlags.Static);
 }
예제 #2
0
파일: Bool.cs 프로젝트: gavin-zyi/Rin
 static Bool()
 {
     True  = new Bool(true);
     False = new Bool(false);
     Get   = typeof(Bool).GetMethod("GetInstance", BindingFlags.NonPublic | BindingFlags.Static);
 }