コード例 #1
0
ファイル: Comment.cs プロジェクト: imintsystems/Kean
 public bool Equals(Comment other)
 {
     return other.NotNull() &&
         this.Value == other.Value;
 }
コード例 #2
0
ファイル: Processor.cs プロジェクト: imintsystems/Kean
 protected virtual Generic.IEnumerator<Node> Process(Comment comment)
 {
     yield return comment;
 }