예제 #1
0
 public BrailleWord(string aWord, BrailleCellCode brCode)
     : this()
 {
     m_Text = aWord;
     m_CellList.Add(BrailleCell.GetInstance(brCode));
 }
예제 #2
0
 public static BrailleCell GetInstance(BrailleCellCode code)
 {
     return(m_AllCells[(int)code]);
 }
예제 #3
0
 public BrailleWord(string text, BrailleCellCode brCode) : this(text)
 {
     CellList.Add(BrailleCell.GetInstance(brCode));
 }