/// <summary>
 /// Gets the collection enumerator for the name-value collection.
 /// </summary>
 /// <returns>An <see cref="System.Collections.IEnumerator"/> for the collection.</returns>
 public System.Collections.IEnumerator GetEnumerator()
 {
     if (v2Coll != null)
     {
         return(v2Coll.GetEnumerator());
     }
     else
     {
         return(unboundDict.GetEnumerator());
     }
 }
 internal INVCEnumerator(V2Interop.ITaskNamedValueCollection v2Coll)
 {
     this.v2CollEnum = v2Coll.GetEnumerator();
 }