ToDecimal() public static method

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