示例#1
0
 /// <summary>
 /// Adds an instance of type RunInvokerVertexCollection to the end of this RunInvokerVertexCollectionCollection.
 /// </summary>
 /// <param name="value">
 /// The RunInvokerVertexCollection to be added to the end of this RunInvokerVertexCollectionCollection.
 /// </param>
 public void Add(RunInvokerVertexCollection value)
 {
     if (value == null)
     {
         throw new ArgumentNullException("value");
     }
     this.List.Add(value);
 }
示例#2
0
 /// <summary>
 /// Removes the first occurrence of a specific RunInvokerVertexCollection from this RunInvokerVertexCollectionCollection.
 /// </summary>
 /// <param name="value">
 /// The RunInvokerVertexCollection value to remove from this RunInvokerVertexCollectionCollection.
 /// </param>
 public void Remove(RunInvokerVertexCollection value)
 {
     this.List.Remove(value);
 }
示例#3
0
 /// <summary>
 /// Determines whether a specfic RunInvokerVertexCollection value is in this RunInvokerVertexCollectionCollection.
 /// </summary>
 /// <param name="value">
 /// The RunInvokerVertexCollection value to locate in this RunInvokerVertexCollectionCollection.
 /// </param>
 /// <returns>
 /// true if value is found in this RunInvokerVertexCollectionCollection;
 /// false otherwise.
 /// </returns>
 public bool Contains(RunInvokerVertexCollection value)
 {
     return(this.List.Contains(value));
 }
 public Enumerator(RunInvokerVertexCollection collection)
 {
     this.wrapped = ((System.Collections.CollectionBase)collection).GetEnumerator();
 }
 /// <summary>
 /// Determines whether a specfic RunInvokerVertexCollection value is in this RunInvokerVertexCollectionCollection.
 /// </summary>
 /// <param name="value">
 /// The RunInvokerVertexCollection value to locate in this RunInvokerVertexCollectionCollection.
 /// </param>
 /// <returns>
 /// true if value is found in this RunInvokerVertexCollectionCollection;
 /// false otherwise.
 /// </returns>
 public bool Contains(RunInvokerVertexCollection value)
 {
     return this.List.Contains(value);
 }
 /// <summary>
 /// Adds an instance of type RunInvokerVertexCollection to the end of this RunInvokerVertexCollectionCollection.
 /// </summary>
 /// <param name="value">
 /// The RunInvokerVertexCollection to be added to the end of this RunInvokerVertexCollectionCollection.
 /// </param>
 public void Add(RunInvokerVertexCollection value)
 {
     if (value == null)
         throw new ArgumentNullException("value");
     this.List.Add(value);
 }
 /// <summary>
 /// Removes the first occurrence of a specific RunInvokerVertexCollection from this RunInvokerVertexCollectionCollection.
 /// </summary>
 /// <param name="value">
 /// The RunInvokerVertexCollection value to remove from this RunInvokerVertexCollectionCollection.
 /// </param>
 public void Remove(RunInvokerVertexCollection value)
 {
     this.List.Remove(value);
 }
 public Enumerator(RunInvokerVertexCollection collection)
 {
     this.wrapped = ((System.Collections.CollectionBase)collection).GetEnumerator();
 }