YAXLib.MemberWrapper.GetOriginalValue C# (CSharp) Метод

GetOriginalValue() публичный Метод

Gets the original value of this member in the specified object
public GetOriginalValue ( object obj, object index ) : object
obj object The object whose value corresponding to this instance, must be retreived.
index object The array of indeces (usually null).
Результат object
        public object GetOriginalValue(object obj, object[] index)
        {
            if(m_isProperty)
            {
                return m_propertyInfoInstance.GetValue(obj, index);
            }
            else
            {
                return m_fieldInfoInstance.GetValue(obj);
            }
        }