System.Reflection.MetadataImport._GetFieldDefProps C# (CSharp) 메소드

_GetFieldDefProps() 개인적인 메소드

private _GetFieldDefProps ( IntPtr scope, MetadataArgs &skipAddresses, int mdToken, int &fieldAttributes ) : void
scope System.IntPtr
skipAddresses MetadataArgs
mdToken int
fieldAttributes int
리턴 void
        private static extern void _GetFieldDefProps(IntPtr scope, out MetadataArgs.SkipAddresses skipAddresses, int mdToken, out int fieldAttributes);
        public void GetFieldDefProps(int mdToken, out FieldAttributes fieldAttributes) 

Usage Example

예제 #1
0
        public void GetFieldDefProps(int mdToken, out FieldAttributes fieldAttributes)
        {
            int fieldAttributes1;

            MetadataImport._GetFieldDefProps(this.m_metadataImport2, mdToken, out fieldAttributes1);
            fieldAttributes = (FieldAttributes)fieldAttributes1;
        }