System.Xml.XmlConvert.ToDecimal C# (CSharp) Méthode

ToDecimal() public static méthode

public static ToDecimal ( string s ) : Decimal
s string
Résultat Decimal
        public static Decimal ToDecimal(string s)
        {
            return Decimal.Parse(s, NumberStyles.AllowLeadingSign | NumberStyles.AllowDecimalPoint | NumberStyles.AllowLeadingWhite | NumberStyles.AllowTrailingWhite, NumberFormatInfo.InvariantInfo);
        }

Usage Example

Exemple #1
0
 public static decimal ItemToDecimal(XPathItem value)
 {
     return(XmlConvert.ToDecimal(value.Value));
 }
All Usage Examples Of System.Xml.XmlConvert::ToDecimal