您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

25 行
415 B

  1. using System;
  2. namespace CIG.Translation
  3. {
  4. public class RawIntegerString : ILocalizedString
  5. {
  6. public RawIntegerString(int i)
  7. {
  8. this._int = i;
  9. }
  10. public override string ToString()
  11. {
  12. return "[IntegerString=" + this._int.ToString() + "]";
  13. }
  14. public string Translate()
  15. {
  16. return this._int.ToString("N0", Localization.CurrentCulture.Info);
  17. }
  18. private int _int;
  19. }
  20. }