Example #1
0
 private bool Equals(SentenceNode other)
 {
     return this.Page == other.Page && this.Sentence == other.Sentence;
 }
Example #2
0
 private void AddSentence(SentenceNode sentence)
 {
     this._sentences.Add(sentence.ToString(), sentence);
     this._layout.AddSentence(sentence.ToString());
     this.OnChange();
 }