Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- using System;
-
- namespace CIG.Translation
- {
- public class RawLongString : ILocalizedString
- {
- public RawLongString(long l)
- {
- this._long = l;
- }
-
- public override string ToString()
- {
- return "[LongString=" + this._long.ToString() + "]";
- }
-
- public string Translate()
- {
- return this._long.ToString("N0", Localization.CurrentCulture.Info);
- }
-
- private long _long;
- }
- }
|