Esempio n. 1
0
 public static List<string> GetVisualBasicContext(string Code, string Keyword)
 {
     CodeContext cc = new CodeContext(Code, Keyword);
     return cc.GetVisualBasicContext();
 }
Esempio n. 2
0
 public static List<string> GetJavaScriptContext(string Code, string Keyword)
 {
     CodeContext cc = new CodeContext(Code, Keyword);
     return cc.GetJavaScriptContext();
 }