コード例 #1
0
ファイル: CheckTypes.cs プロジェクト: swoog/CheckIt
 protected CheckTypes(ICompilationDocument document, ICompilationInfo compile, string pattern, string typeName)
     : this(compile.Get <T>(document), pattern, typeName)
 {
 }
コード例 #2
0
ファイル: CheckMethods.cs プロジェクト: swoog/CheckIt
 public CheckMethods(ICompilationInfo compilationInfo, string pattern)
 {
     this.pattern = pattern;
     this.methods = compilationInfo.Get <IMethod>();
 }