PERWAPI.MethPtrType.BuildCILInfo C# (CSharp) Method

BuildCILInfo() final private method

final private BuildCILInfo ( CILWriter output ) : void
output CILWriter
return void
        internal override sealed void BuildCILInfo(CILWriter output)
        {
            Type[] types = meth.GetParTypes();
            if (types != null)
                for (int i = 0; i < types.Length; i++)
                    types[i].BuildCILInfo(output);
            types = meth.GetOptParTypes();
            if (types != null)
                for (int i = 0; i < types.Length; i++)
                    types[i].BuildCILInfo(output);
        }