示例#1
0
文件: Parser.cs 项目: wtfcolt/game
 /// <summary>
 /// Initializes the <see cref="Parser"/> class.
 /// </summary>
 static Parser()
 {
     _parserCurrent = new Parser(CultureInfo.CurrentCulture, NumberFormatInfo.CurrentInfo, DateTimeFormatInfo.CurrentInfo);
     _parserInvariant = new Parser(CultureInfo.InvariantCulture, NumberFormatInfo.InvariantInfo,
         DateTimeFormatInfo.InvariantInfo);
 }