System.Reflection.MetadataImport._Enum C# (CSharp) Method

_Enum() private method

private _Enum ( IntPtr scope, MetadataArgs &skipAddresses, int type, int parent, int result, int count ) : void
scope System.IntPtr
skipAddresses MetadataArgs
type int
parent int
result int
count int
return void
        private unsafe static extern void _Enum(IntPtr scope, out MetadataArgs.SkipAddresses skipAddresses, int type, int parent, int* result, int count);
        [MethodImplAttribute (MethodImplOptions.InternalCall)]

Usage Example

Esempio n. 1
0
 public void Enum(MetadataTokenType type, int parent, out MetadataEnumResult result)
 {
     MetadataImport._Enum(this.m_metadataImport2, (int)type, parent, out result);
 }