private Type GetSimpleValueType() { if (SimpleValue == null) { return(typeof(object)); } if (Type.IsEnum) { return(typeof(string)); } return(SimpleValue.GetType()); }
private Type GetSimpleValueType() { return(SimpleValue == null ? typeof(object) : SimpleValue.GetType()); }