Try to Parse a string with decimal point to decimal in CSharp

Description

The following code shows how to try to Parse a string with decimal point to decimal.

Example


using System;/*from   w ww. j a  v a 2 s .c o  m*/
using System.Globalization;
class MainClass
{
    public static void Main( )
    {
        decimal number;
        
        string value = "1345,978";
        NumberStyles style = NumberStyles.AllowDecimalPoint;
        CultureInfo culture = CultureInfo.CreateSpecificCulture("fr-FR");
        if (Decimal.TryParse(value, style, culture, out number))
           Console.WriteLine("Converted '{0}' to {1}.", value, number);
        else
           Console.WriteLine("Unable to convert '{0}'.", value);

   }
}

The code above generates the following result.





















Home »
  C# Tutorial »
    Data Types »




C# Data Types
Bool
Byte
Char
Decimal
Double
Float
Integer
Long
Short
String
C# Array
Array Example
Byte Array
C# Standard Data Type Format
BigInteger
Complex
Currency
DateTime
DateTimeOffset
DateTime Format Parse Convert
TimeSpan
TimeZone
Enum
Null
tuple
var