System.Diagnostics.DebuggerAttributes.GetFieldValue C# (CSharp) Method

GetFieldValue() static private method

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