StringCollection Class

Definition

Defines a collection of string values.

[System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.None)]
[System.Runtime.InteropServices.ComVisible(true)]
[System.Runtime.InteropServices.Guid("59fea435-088a-4459-be0e-9d081a673317")]
public class StringCollection : Microsoft.Hpc.Scheduler.SchedulerCollection<string>, Microsoft.Hpc.Scheduler.IStringCollection, System.Collections.Generic.ICollection<string>, System.Collections.Generic.IEnumerable<string>, System.Collections.ICollection
type StringCollection = class
    inherit SchedulerCollection<string>
    interface IStringCollection
    interface ISchedulerCollection
    interface ICollection
    interface IEnumerable
    interface ICollection<string>
    interface seq<string>
Public Class StringCollection
Inherits SchedulerCollection(Of String)
Implements ICollection, ICollection(Of String), IEnumerable(Of String), IStringCollection
Inheritance
StringCollection
Attributes
Implements

Constructors

StringCollection()

Initializes a new, empty instance of this class.

StringCollection(IEnumerable<String>)

Initializes a new instance of this class using the specified list of strings.

Properties

Count

Retrieves a count of the number of items in the collection.

(Inherited from SchedulerCollection<T>)
IsReadOnly

Determines whether the collection is read-only.

(Inherited from SchedulerCollection<T>)
IsSynchronized

Determines whether access to the collection is synchronized.

(Inherited from SchedulerCollection<T>)
Item[Int32]

Retrieves the specified item from the collection.

(Inherited from SchedulerCollection<T>)
SyncRoot

Retrieves an object that can be used to synchronize access to the collection.

(Inherited from SchedulerCollection<T>)

Methods

Add(T)

Adds an item to the collection.

(Inherited from SchedulerCollection<T>)
Clear()

Removes all items from the collection.

(Inherited from SchedulerCollection<T>)
Contains(T)

Determines whether the collection contains the specified item.

(Inherited from SchedulerCollection<T>)
CopyTo(Array, Int32)

Copies items from the collection to an array at the specified index.

(Inherited from SchedulerCollection<T>)
CopyTo(T[], Int32)

Copies items from the collection to an array at the specified index.

(Inherited from SchedulerCollection<T>)
Remove(T)

Removes the first occurrence of the specified item from the collection.

(Inherited from SchedulerCollection<T>)

Explicit Interface Implementations

IEnumerable.GetEnumerator() (Inherited from SchedulerCollection<T>)
IEnumerable<T>.GetEnumerator() (Inherited from SchedulerCollection<T>)
ISchedulerCollection.Add(Object) (Inherited from SchedulerCollection<T>)
ISchedulerCollection.Contains(Object) (Inherited from SchedulerCollection<T>)
ISchedulerCollection.GetEnumerator() (Inherited from SchedulerCollection<T>)
ISchedulerCollection.Item[Int32] (Inherited from SchedulerCollection<T>)
ISchedulerCollection.Remove(Object) (Inherited from SchedulerCollection<T>)
IStringCollection.Add(String)
IStringCollection.Clear()
IStringCollection.Contains(String)
IStringCollection.Count
IStringCollection.GetEnumerator()
IStringCollection.Item[Int32]
IStringCollection.Remove(String)

Applies to