Show / Hide Table of Contents

    Class MemberEndList

    Inheritance
    System.Object
    MemberEndList
    Implements
    System.Collections.Generic.IEnumerable<MemberEnd>
    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 MemberEndList : IEnumerable<MemberEnd>, IEnumerable

    Constructors

    MemberEndList()

    Declaration
    public MemberEndList()

    MemberEndList(MemberEndList)

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

    MemberEndList(IEnumerable<MemberEnd>)

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

    MemberEndList(IEnumerable)

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

    MemberEndList(Int32)

    Declaration
    public MemberEndList(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 MemberEnd this[int index] { get; set; }
    Parameters
    Type Name Description
    System.Int32 index
    Property Value
    Type Description
    MemberEnd

    Methods

    Add(MemberEnd)

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

    AddRange(MemberEndList)

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

    Clear()

    Declaration
    public void Clear()

    CopyTo(MemberEnd[])

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

    CopyTo(MemberEnd[], Int32)

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

    CopyTo(Int32, MemberEnd[], Int32, Int32)

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

    Finalize()

    Declaration
    protected void Finalize()

    GetEnumerator()

    Declaration
    public MemberEndList.MemberEndListEnumerator GetEnumerator()
    Returns
    Type Description
    MemberEndList.MemberEndListEnumerator

    GetRange(Int32, Int32)

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

    Insert(Int32, MemberEnd)

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

    InsertRange(Int32, MemberEndList)

    Declaration
    public void InsertRange(int index, MemberEndList values)
    Parameters
    Type Name Description
    System.Int32 index
    MemberEndList 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(MemberEnd, Int32)

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

    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, MemberEndList)

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

    ToArray()

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

    Explicit Interface Implementations

    IEnumerable<MemberEnd>.GetEnumerator()

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

    IEnumerable.GetEnumerator()

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

    Implements

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