System.RuntimeFieldHandle.GetAttributes C# (CSharp) 메소드

GetAttributes() 개인적인 메소드

private GetAttributes ( ) : FieldAttributes
리턴 FieldAttributes
        internal extern FieldAttributes GetAttributes(); 
        

Usage Example

예제 #1
0
 internal RtFieldInfo(
     RuntimeFieldHandle handle, RuntimeType declaringType, RuntimeTypeCache reflectedTypeCache, BindingFlags bindingFlags) 
     : base(reflectedTypeCache, declaringType, bindingFlags)
 {
     m_fieldHandle = handle;
     m_fieldAttributes = m_fieldHandle.GetAttributes();
 }