예제 #1
0
파일: WordList.cs 프로젝트: aata/szotar
 public WordListEntry(WordList owner, string phrase, string translation)
 {
     this.owner       = owner;
     this.phrase      = phrase ?? "";
     this.translation = translation ?? "";
 }
예제 #2
0
파일: WordList.cs 프로젝트: aata/szotar
 public void AddTo(WordList newOwner, int index)
 {
     Owner = newOwner;
     newOwner.Insert(index, this);
 }
예제 #3
0
파일: WordList.cs 프로젝트: aata/szotar
 public WordListEntry(WordList owner)
 {
     this.owner = owner;
     phrase     = translation = string.Empty;
 }