Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorCss/Css/CssNumber.cs @ 13918

Last change on this file since 13918 was 12762, checked in by aballeit, 9 years ago

#2283 GUI updates, Tree-chart, MCTS Version 2 (prune leaves)

File size: 386 bytes
Line 
1using System;
2using System.Globalization;
3
4namespace SharpVectors.Dom.Css
5{
6    public sealed class CssNumber
7  {
8    private static NumberFormatInfo format;
9
10    public static NumberFormatInfo Format
11    {
12      get
13      {
14        if (format == null)
15        {
16          format = new NumberFormatInfo();
17          format.NumberDecimalSeparator = ".";
18        }
19
20        return format;
21      }
22    }
23  }
24}
Note: See TracBrowser for help on using the repository browser.