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
Ejemplo n.º 1
0
 internal UnreferencedLabelRemover(SourceMethodBody methodBody)
 {
     this.methodBody = methodBody;
 }
Ejemplo n.º 2
0
 internal ForEachLoopReplacer(SourceMethodBody sourceMethodBody)
 {
     Contract.Requires(sourceMethodBody != null);
     this.host = sourceMethodBody.host; Contract.Assume(sourceMethodBody.host != null);
 }