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