Show / Hide Table of Contents

    Class Point3DList.Point3DListEnumerator

    Inheritance
    object
    Point3DList.Point3DListEnumerator
    Implements
    IEnumerator<Point3D>
    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 Point3DList.Point3DListEnumerator : IEnumerator<Point3D>, IEnumerator, IDisposable

    Constructors

    Point3DListEnumerator(Point3DList)

    Declaration
    public Point3DListEnumerator(Point3DList collection)
    Parameters
    Type Name Description
    Point3DList collection

    Properties

    Current

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

    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