Advertisement
lil_keeeet

les_6(region format of convert)

Oct 24th, 2021
943
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.55 KB | None | 0 0
  1. using System;
  2. using System.Globalization; // подключаем это
  3.  
  4. namespace les6
  5. {
  6.     class Program
  7.     {
  8.         static void Main(string[] args)
  9.         {
  10.             // региональные настройки формата
  11.             string str = "1,9";
  12.             NumberFormatInfo numberFormatInfo = new NumberFormatInfo()
  13.             {
  14.                 NumberDecimalSeparator = ",",
  15.             };
  16.  
  17.             double a = Convert.ToDouble(str, numberFormatInfo);
  18.             Console.WriteLine(a);
  19.  
  20.         }
  21.     }
  22. }
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement