コード例 #1
0
 protected bool Equals(Punctuation other)
 {
     return string.Equals(Chars, other.Chars) &&
         IsSentencesSeparator == other.IsSentencesSeparator &&
         IsSyntacticConstructionsSeparator == other.IsSyntacticConstructionsSeparator;
 }
コード例 #2
0
 protected Punctuation(Punctuation clone)
 {
     Chars = clone.Chars;
     IsSentencesSeparator = clone.IsSentencesSeparator;
     IsSyntacticConstructionsSeparator = clone.IsSyntacticConstructionsSeparator;
 }