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
|
Rev | Line | |
---|
[12762] | 1 | using System;
|
---|
| 2 | using System.Globalization;
|
---|
| 3 |
|
---|
| 4 | namespace 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.