Show / Hide Table of Contents

    Class HoleList

    Inheritance
    object
    HoleList
    Implements
    IEnumerable<Hole>
    IEnumerable
    Inherited Members
    object.GetType()
    object.MemberwiseClone()
    object.ToString()
    object.Equals(object)
    object.Equals(object, object)
    object.ReferenceEquals(object, object)
    object.GetHashCode()
    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
    IEnumerable<Hole> c

    HoleList(IEnumerable)

    Declaration
    public HoleList(IEnumerable c)
    Parameters
    Type Name Description
    IEnumerable c

    HoleList(int)

    Declaration
    public HoleList(int capacity)
    Parameters
    Type Name Description
    int capacity

    Properties

    Capacity

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

    Count

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

    IsFixedSize

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

    IsReadOnly

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

    IsSynchronized

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

    this[int]

    Declaration
    public Hole this[int index] { get; set; }
    Parameters
    Type Name Description
    int 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[], int)

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

    CopyTo(int, Hole[], int, int)

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

    ~HoleList()

    Declaration
    protected ~HoleList()

    GetEnumerator()

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

    GetRange(int, int)

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

    Insert(int, Hole)

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

    InsertRange(int, HoleList)

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

    RemoveAt(int)

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

    RemoveRange(int, int)

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

    Repeat(Hole, int)

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

    Reverse()

    Declaration
    public void Reverse()

    Reverse(int, int)

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

    SetRange(int, HoleList)

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

    ToArray()

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

    Implements

    IEnumerable<T>
    IEnumerable
    Back to top