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.
 
 
 

29 linhas
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. }