本文整理汇总了C#中Cci类的典型用法代码示例。如果您正苦于以下问题:C#Cci类的具体用法?C#Cci怎么用?C#Cci使用的例子?这里精选的类代码示例或许可以为您提供帮助。
示例1:MethodBody
publicMethodBody(
byte[]ilBits,
ushortmaxStack,
Cci.IMethodDefinitionparent,
ImmutableArray
locals,
SequencePointListsequencePoints,
DebugDocumentProviderdebugDocumentProvider,
ImmutableArrayexceptionHandlers,
ImmutableArraylocalScopes,
Cci.CustomDebugInfoKindcustomDebugInfoKind,
boolhasDynamicLocalVariables,
ImmutableArraynamespaceScopes=default(ImmutableArray),
stringiteratorClassName=null,
ImmutableArrayiteratorScopes=default(ImmutableArray),
Cci.AsyncMethodBodyDebugInfoasyncMethodDebugInfo=null)
{
Debug.Assert(!locals.IsDefault);
Debug.Assert(!exceptionHandlers.IsDefault);
Debug.Assert(!localScopes.IsDefault);
this.ilBits=ilBits;
this.asyncMethodDebugInfo=asyncMethodDebugInfo;
this.maxStack=maxStack;
this.parent=parent;
this.locals=locals;
this.sequencePoints=sequencePoints;
this.debugDocumentProvider=debugDocumentProvider;
this.exceptionHandlers=exceptionHandlers;
this.localScopes=localScopes;
this.customDebugInfoKind=customDebugInfoKind;
this.hasDynamicLocalVariables=hasDynamicLocalVariables;
this.namespaceScopes=namespaceScopes.IsDefault?ImmutableArray.Empty:namespaceScopes;
this.iteratorClassName=iteratorClassName;
this.iteratorScopes=iteratorScopes.IsDefault?ImmutableArray.Empty:iteratorScopes;
}
原文链接:http://www.jxszl.com/biancheng/C/556692.html