Esempio n. 1
0
		// Constructor.
		public NodeListEnumerator(NodeList list)
				{
					this.list = list;
					this.current = null;
					this.generation = list.generation;
					this.done = false;
				}
Esempio n. 2
0
	// Constructor.  Only accessible to internal subclasses.
	internal XmlNode(XmlNode parent)
			{
				this.parent = parent;
				this.list = null;		// Created on demand to save memory.
			}