System.ZXPDatum.GetValue C# (CSharp) Method

GetValue() public method

public GetValue ( object o ) : object
o object
return object
        public object GetValue(object o)
        {
            if(IsProperty) {
                if(prop.CanRead) return prop.GetValue(o, null);
                else return null;
            }
            else return field.GetValue(o);
        }