Show / Hide Table of Contents

    Class HoleList

    Inheritance
    System.Object
    HoleList
    Implements
    System.Collections.Generic.IEnumerable<Hole>
    System.Collections.IEnumerable
    Inherited Members
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    System.Object.ToString()
    System.Object.ReferenceEquals(System.Object, System.Object)
    Namespace: DesignData.SDS2.Model
    Assembly: DesignData.SDS2.Model.dll
    Syntax
    public class HoleList : IEnumerable<Hole>, IEnumerable

    Constructors

    HoleList()

    Declaration
    public HoleList()

    HoleList(HoleList)

    Declaration
    public HoleList(HoleList other)
    Parameters
    Type Name Description
    HoleList other

    HoleList(IEnumerable<Hole>)

    Declaration
    public HoleList(IEnumerable<Hole> c)
    Parameters
    Type Name Description
    System.Collections.Generic.IEnumerable<Hole> c

    HoleList(IEnumerable)

    Declaration
    public HoleList(IEnumerable c)
    Parameters
    Type Name Description
    System.Collections.IEnumerable c

    HoleList(Int32)

    Declaration
    public HoleList(int capacity)
    Parameters
    Type Name Description
    System.Int32 capacity

    Properties

    Capacity

    Declaration
    public int Capacity { get; set; }
    Property Value
    Type Description
    System.Int32

    Count

    Declaration
    public int Count { get; }
    Property Value
    Type Description
    System.Int32

    IsFixedSize

    Declaration
    public bool IsFixedSize { get; }
    Property Value
    Type Description
    System.Boolean

    IsReadOnly

    Declaration
    public bool IsReadOnly { get; }
    Property Value
    Type Description
    System.Boolean

    IsSynchronized

    Declaration
    public bool IsSynchronized { get; }
    Property Value
    Type Description
    System.Boolean

    Item[Int32]

    Declaration
    public Hole this[int index] { get; set; }
    Parameters
    Type Name Description
    System.Int32 index
    Property Value
    Type Description
    Hole

    Methods

    Add(Hole)

    Declaration
    public void Add(Hole x)
    Parameters
    Type Name Description
    Hole x

    AddRange(HoleList)

    Declaration
    public void AddRange(HoleList values)
    Parameters
    Type Name Description
    HoleList values

    Clear()

    Declaration
    public void Clear()

    CopyTo(Hole[])

    Declaration
    public void CopyTo(Hole[] array)
    Parameters
    Type Name Description
    Hole[] array

    CopyTo(Hole[], Int32)

    Declaration
    public void CopyTo(Hole[] array, int arrayIndex)
    Parameters
    Type Name Description
    Hole[] array
    System.Int32 arrayIndex

    CopyTo(Int32, Hole[], Int32, Int32)

    Declaration
    public void CopyTo(int index, Hole[] array, int arrayIndex, int count)
    Parameters
    Type Name Description
    System.Int32 index
    Hole[] array
    System.Int32 arrayIndex
    System.Int32 count

    Finalize()

    Declaration
    protected void Finalize()

    GetEnumerator()

    Declaration
    public HoleList.HoleListEnumerator GetEnumerator()
    Returns
    Type Description
    HoleList.HoleListEnumerator

    GetRange(Int32, Int32)

    Declaration
    public HoleList GetRange(int index, int count)
    Parameters
    Type Name Description
    System.Int32 index
    System.Int32 count
    Returns
    Type Description
    HoleList

    Insert(Int32, Hole)

    Declaration
    public void Insert(int index, Hole x)
    Parameters
    Type Name Description
    System.Int32 index
    Hole x

    InsertRange(Int32, HoleList)

    Declaration
    public void InsertRange(int index, HoleList values)
    Parameters
    Type Name Description
    System.Int32 index
    HoleList values

    RemoveAt(Int32)

    Declaration
    public void RemoveAt(int index)
    Parameters
    Type Name Description
    System.Int32 index

    RemoveRange(Int32, Int32)

    Declaration
    public void RemoveRange(int index, int count)
    Parameters
    Type Name Description
    System.Int32 index
    System.Int32 count

    Repeat(Hole, Int32)

    Declaration
    public static HoleList Repeat(Hole value, int count)
    Parameters
    Type Name Description
    Hole value
    System.Int32 count
    Returns
    Type Description
    HoleList

    Reverse()

    Declaration
    public void Reverse()

    Reverse(Int32, Int32)

    Declaration
    public void Reverse(int index, int count)
    Parameters
    Type Name Description
    System.Int32 index
    System.Int32 count

    SetRange(Int32, HoleList)

    Declaration
    public void SetRange(int index, HoleList values)
    Parameters
    Type Name Description
    System.Int32 index
    HoleList values

    ToArray()

    Declaration
    public Hole[] ToArray()
    Returns
    Type Description
    Hole[]

    Explicit Interface Implementations

    IEnumerable<Hole>.GetEnumerator()

    Declaration
    IEnumerator<Hole> IEnumerable<Hole>.GetEnumerator()
    Returns
    Type Description
    System.Collections.Generic.IEnumerator<Hole>

    IEnumerable.GetEnumerator()

    Declaration
    IEnumerator IEnumerable.GetEnumerator()
    Returns
    Type Description
    System.Collections.IEnumerator

    Implements

    System.Collections.Generic.IEnumerable<T>
    System.Collections.IEnumerable
    Back to top