コード例 #1
0
 public static string ToPropertyString(this OdcmProperty property)
 {
     return(string.Format("{0} {1}{2}", property.GetFullType(), (property.IsComplex() ? "*" : string.Empty), SanitizePropertyName(property)));
 }
コード例 #2
0
 public static string ToSetterTypeString(this OdcmProperty property)
 {
     return(string.Format("{0} {1}", property.GetFullType(), (property.IsComplex() ? "*" : string.Empty)));
 }