System.Diagnostics.DebuggerAttributes.GetFieldValue C# (CSharp) 메소드

GetFieldValue() 정적인 개인적인 메소드

static private GetFieldValue ( object obj, string fieldName ) : object
obj object
fieldName string
리턴 object
        internal static object GetFieldValue(object obj, string fieldName)
        {
            return GetField(obj, fieldName).GetValue(obj);
        }