您不能選擇超過 %s 個話題 話題必須以字母或數字為開頭,可包含連接號 ('-') 且最長為 35 個字
 
 
 

18 行
283 B

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