Beispiel #1
0
 public WordListEntry(WordList owner, string phrase, string translation)
 {
     this.owner       = owner;
     this.phrase      = phrase ?? "";
     this.translation = translation ?? "";
 }
Beispiel #2
0
 public void AddTo(WordList newOwner, int index)
 {
     Owner = newOwner;
     newOwner.Insert(index, this);
 }
Beispiel #3
0
 public WordListEntry(WordList owner)
 {
     this.owner = owner;
     phrase     = translation = string.Empty;
 }