daily pastebin goal
58%
SHARE
TWEET

Untitled

a guest Mar 2nd, 2014 15 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Data;
  6. using System.Globalization;
  7.  
  8. namespace ConsoleApplication1
  9. {
  10.     class Program
  11.     {
  12.         static void Main(string[] args)
  13.         {
  14.             var ci = (CultureInfo)CultureInfo.CurrentCulture.Clone();
  15.             ci.NumberFormat.CurrencyDecimalDigits = 1;
  16.  
  17.         var dataTable = new DataTable();
  18.         dataTable.Locale = ci;
  19.  
  20.         Console.WriteLine(ci.NumberFormat.CurrencyDecimalDigits.ToString());
  21.         Console.WriteLine(dataTable.Locale.NumberFormat.CurrencyDecimalDigits.ToString());
  22.         Console.ReadKey();
  23.     }
  24. }
RAW Paste Data
Top