Show / Hide Table of Contents

    Class StringList.StringListEnumerator

    Inheritance
    object
    StringList.StringListEnumerator
    Implements
    IEnumerator<string>
    IEnumerator
    IDisposable
    Inherited Members
    object.GetType()
    object.ToString()
    object.Equals(object)
    object.Equals(object, object)
    object.ReferenceEquals(object, object)
    object.GetHashCode()
    Namespace: DesignData.SDS2.Primitives
    Assembly: DesignData.SDS2.Primitives.dll
    Syntax
    public sealed class StringList.StringListEnumerator : IEnumerator<string>, IEnumerator, IDisposable

    Constructors

    StringListEnumerator(StringList)

    Declaration
    public StringListEnumerator(StringList collection)
    Parameters
    Type Name Description
    StringList collection

    Properties

    Current

    Declaration
    public string Current { get; }
    Property Value
    Type Description
    string

    Methods

    Dispose()

    Declaration
    public void Dispose()

    MoveNext()

    Declaration
    public bool MoveNext()
    Returns
    Type Description
    bool

    Reset()

    Declaration
    public void Reset()

    Implements

    IEnumerator<T>
    IEnumerator
    IDisposable
    Back to top