Пример #1
0
 protected virtual Generic.IEnumerator<Node> Process(ProcessingInstruction instruction)
 {
     yield return instruction;
 }
Пример #2
0
 public bool Equals(ProcessingInstruction other)
 {
     return other.NotNull() &&
         this.Target == other.Target &&
         this.Value == other.Value;
 }