Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public static double ConvertToDouble(string Value, string DecimalSeparator)
- {
- NumberFormatInfo format = new NumberFormatInfo();
- format.NumberDecimalSeparator=DecimalSeparator;
- return Convert.ToDouble(Value, format);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement