ToDecimal() public static method

public static ToDecimal ( string s ) : Decimal
s string
return Decimal
Example #1
0
 public static decimal ItemToDecimal(XPathItem value)
 {
     return(XmlConvert.ToDecimal(value.Value));
 }
Example #2
0
 public static decimal StringToDecimal(string value)
 {
     return(XmlConvert.ToDecimal(value));
 }
Example #3
0
 public static decimal StringToNonPositiveInteger(string value)
 {
     return(XmlConvert.ToDecimal(value));
 }
Example #4
0
 public static decimal ItemToNonPositiveInteger(XPathItem value)
 {
     return(XmlConvert.ToDecimal(value.Value));
 }