A metadata (IL) representation along with a source level representation of the body of a method or of a property/event accessor.
Inheritance: Microsoft.Cci.MutableCodeModel.SourceMethodBody, IMethodBody
コード例 #1
0
 internal UnreferencedLabelRemover(SourceMethodBody methodBody)
 {
     this.methodBody = methodBody;
 }
コード例 #2
0
ファイル: ForEachLoopReplacer.cs プロジェクト: xornand/cci
 internal ForEachLoopReplacer(SourceMethodBody sourceMethodBody)
 {
     Contract.Requires(sourceMethodBody != null);
     this.host = sourceMethodBody.host; Contract.Assume(sourceMethodBody.host != null);
 }