Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- using System;
-
- namespace CIG.Translation.ArabicSupport
- {
- public class TashkeelLocation
- {
- public TashkeelLocation(char tashkeel, int position)
- {
- this.tashkeel = tashkeel;
- this.position = position;
- }
-
- public char tashkeel;
-
- public int position;
- }
- }
|