System.ZXPDatum.GetValue C# (CSharp) Метод

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

public GetValue ( object o ) : object
o object
Результат object
        public object GetValue(object o)
        {
            if(IsProperty) {
                if(prop.CanRead) return prop.GetValue(o, null);
                else return null;
            }
            else return field.GetValue(o);
        }