Top "Formatexception" questions

FormatException is thrown when the format of an argument does not meet the parameter specifications of the invoked method.

How to deserialize a float value with a localized decimal separator with Jackson

The input stream I am parsing with Jackson contains latitude and longitude values such as here: { "name": "product 23", "latitude": "52,48264", "longitude": "13,31822" } …

java jackson json-deserialization decimalformat formatexception
System.FormatException: Input string was not in a correct format

private void ReadUnitPrice() { Console.Write("Enter the unit gross price: "); unitPrice = double.Parse(Console.ReadLine()); } This should work, but I'm …

c# visual-studio-2010 formatexception
Additional non-parsable characters are at the end of the string

I am doing the following conversion from string to int, Convert.ToInt32("10D6DE", 16) -> works fine but, Convert.…

c# string type-conversion formatexception
System.FormatException: Index (zero based) must be greater than or equal to zero and less than the size of the argument list

Error : An unhandled exception of type 'System.FormatException' occurred in mscorlib.dll Additional info : Index (zero based) must be greater …

c# formatexception
System.FormatException: The specified string is not in the form required for an e-mail address

net and xml im making a form tht send an email but it gives me an error the email adresses …

asp.net xml vb.net formatexception
Why am I getting a FormatException was unhandled error?

I have created a program, and a extensive test of it, I'm getting a error that says "FormatException was unhandled, …

c# string input formatexception unhandled
The best overloaded method match for 'int.Parse(string)' has some invalid arguments

Console.WriteLine("Enter the page that you would like to set the bookmark on: "); SetBookmarkPage(int.Parse(Console.ReadLine)); It's …

c# visual-studio-2010 formatexception
What is the .NET equivalent of Java's NumberFormatException?

Is FormatException in .NET the equivalent of NumberFormatException in Java ?

java .net formatexception numberformatexception