Show / Hide Table of Contents

    Class Point2DList.Point2DListEnumerator

    Inheritance
    object
    Point2DList.Point2DListEnumerator
    Implements
    IEnumerator<Point2D>
    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 Point2DList.Point2DListEnumerator : IEnumerator<Point2D>, IEnumerator, IDisposable

    Constructors

    Point2DListEnumerator(Point2DList)

    Declaration
    public Point2DListEnumerator(Point2DList collection)
    Parameters
    Type Name Description
    Point2DList collection

    Properties

    Current

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

    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