Exemplo n.º 1
0
 public static string ToPropertyString(this OdcmProperty property)
 {
     return(string.Format("{0} {1}{2}", property.GetFullType(), (property.IsComplex() ? "*" : string.Empty), SanitizePropertyName(property)));
 }
Exemplo n.º 2
0
 public static string ToSetterTypeString(this OdcmProperty property)
 {
     return(string.Format("{0} {1}", property.GetFullType(), (property.IsComplex() ? "*" : string.Empty)));
 }