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

29 行
461 B

  1. using System;
  2. namespace CIG.Translation
  3. {
  4. public class RawLiteralString : ILocalizedString
  5. {
  6. public RawLiteralString(string s)
  7. {
  8. if (s == null)
  9. {
  10. throw new ArgumentNullException("SUISS Localization: s");
  11. }
  12. this._string = s;
  13. }
  14. public override string ToString()
  15. {
  16. return "[Literal=" + this._string + "]";
  17. }
  18. public string Translate()
  19. {
  20. return this._string;
  21. }
  22. private string _string;
  23. }
  24. }