コード例 #1
0
ファイル: CodeContext.cs プロジェクト: moon2l/IronWASP
 public static List<string> GetVisualBasicContext(string Code, string Keyword)
 {
     CodeContext cc = new CodeContext(Code, Keyword);
     return cc.GetVisualBasicContext();
 }
コード例 #2
0
ファイル: CodeContext.cs プロジェクト: moon2l/IronWASP
 public static List<string> GetJavaScriptContext(string Code, string Keyword)
 {
     CodeContext cc = new CodeContext(Code, Keyword);
     return cc.GetJavaScriptContext();
 }