2012/1/25 Rémi BOURGAREL <bourgar...@gmail.com>:
> --
> You received this message because you are subscribed to the Google Groups "Castle Project Development List" group.
> To post to this group, send email to castle-pro...@googlegroups.com.
> To unsubscribe from this group, send email to castle-project-d...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/castle-project-devel?hl=en.
>
--
Cheers,
hammett
http://hammett.castleproject.org/
2012/1/26 Rémi BOURGAREL <bourgar...@gmail.com>:
protected static string FormatIfNecessary(object value, IDictionary attributes)
{
var formatString = CommonUtils.ObtainEntryAndRemove(attributes, "textformat");
if (value != null && formatString != null)
{
var formattable = value as IFormattable;
if (formattable != null)
{
value = formattable.ToString(formatString, null);
}
}
else if (value == null)
{
value = String.Empty;
}
return value.ToString();
}
IsNaN("1,4")
2012/1/27 Rémi BOURGAREL <bourgar...@gmail.com>:
> --
> You received this message because you are subscribed to the Google Groups
> "Castle Project Development List" group.
> To view this discussion on the web visit
> https://groups.google.com/d/msg/castle-project-devel/-/3GkIvya2jeQJ.