Skip to content

Commit

Permalink
Merge pull request #101 from occ/master
Browse files Browse the repository at this point in the history
Decimal support to XmlBinaryDictionaryReader
  • Loading branch information
atsushieno committed May 16, 2011
2 parents 1d08b24 + 1961a2e commit e4816c5
Showing 1 changed file with 2 additions and 0 deletions.
Expand Up @@ -173,6 +173,8 @@ public NodeInfo (bool isAttr)
return XmlConvert.ToString ((float) TypedValue);
case BF.Double:
return XmlConvert.ToString ((double) TypedValue);
case BF.Decimal:
return XmlConvert.ToString ((decimal) TypedValue);
case BF.DateTime:
return XmlConvert.ToString ((DateTime) TypedValue, XmlDateTimeSerializationMode.RoundtripKind);
case BF.TimeSpan:
Expand Down

0 comments on commit e4816c5

Please sign in to comment.