예제 #1
0
 public void Print()
 {
     Console.Write(PartOfSpeech.name + " " + SenseCnt + " ");
     for (int j = 0; j < Ptruse.Length; j++)
     {
         Console.Write(Ptruse[j].Mnemonic + " ");
     }
     Console.WriteLine();
     if (Next != null)
     {
         Next.Print();
     }
 }
예제 #2
0
파일: Index.cs 프로젝트: hajarSA/d
 public void Print()
 {
     Console.Write(pos.name + " " + sense_cnt + " ");
     for (int j = 0; j < ptruse.Length; j++)
     {
         Console.Write(ptruse[j].mnemonic + " ");
     }
     Console.WriteLine();
     //		for (int k=0;k<offs.Length;k++)
     //		{
     //			SynSet s = new SynSet(offs[k],pos);
     //			Console.WriteLine(s.defn);
     //		}
     if (next != null)
     {
         next.Print();
     }
 }