예제 #1
0
 public static void ReadFile(string UISFile)
 {
     using (StreamReader sr = File.OpenText(UISFile))
     {
         string code = sr.ReadToEnd();
         Loader = new UISLoader(code);
     }
 }
예제 #2
0
 public static void ReadCode(String code)
 {
     Loader = new UISLoader(code);
 }