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

18 行
235 B

  1. using System;
  2. namespace CIG.Translation.ArabicSupport
  3. {
  4. public class ArabicMapping
  5. {
  6. public ArabicMapping(int from, int to)
  7. {
  8. this.from = from;
  9. this.to = to;
  10. }
  11. public int from;
  12. public int to;
  13. }
  14. }