コード例 #1
0
ファイル: SentenceNode.cs プロジェクト: Deli-SK/NSA-Edge
 private bool Equals(SentenceNode other)
 {
     return this.Page == other.Page && this.Sentence == other.Sentence;
 }
コード例 #2
0
ファイル: GraphFacade.cs プロジェクト: Deli-SK/NSA-Edge
 private void AddSentence(SentenceNode sentence)
 {
     this._sentences.Add(sentence.ToString(), sentence);
     this._layout.AddSentence(sentence.ToString());
     this.OnChange();
 }