Não pode escolher mais do que 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- using System;
-
- namespace CIG.Translation
- {
- public class RawIntegerString : ILocalizedString
- {
- public RawIntegerString(int i)
- {
- this._int = i;
- }
-
- public override string ToString()
- {
- return "[IntegerString=" + this._int.ToString() + "]";
- }
-
- public string Translate()
- {
- return this._int.ToString("N0", Localization.CurrentCulture.Info);
- }
-
- private int _int;
- }
- }
|