Show / Hide Table of Contents

    Class EdgeList

    Inheritance
    System.Object
    EdgeList
    Implements
    System.Collections.Generic.IEnumerable<Edge>
    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.Primitives
    Assembly: DesignData.SDS2.Primitives.dll
    Syntax
    public class EdgeList : IEnumerable<Edge>, IEnumerable

    Constructors

    EdgeList()

    Declaration
    public EdgeList()

    EdgeList(EdgeList)

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

    EdgeList(IEnumerable<Edge>)

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

    EdgeList(IEnumerable)

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

    EdgeList(Int32)

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

    Methods

    Add(Edge)

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

    AddRange(EdgeList)

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

    Clear()

    Declaration
    public void Clear()

    CopyTo(Edge[])

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

    CopyTo(Edge[], Int32)

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

    CopyTo(Int32, Edge[], Int32, Int32)

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

    Finalize()

    Declaration
    protected void Finalize()

    GetEnumerator()

    Declaration
    public EdgeList.EdgeListEnumerator GetEnumerator()
    Returns
    Type Description
    EdgeList.EdgeListEnumerator

    GetRange(Int32, Int32)

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

    Insert(Int32, Edge)

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

    InsertRange(Int32, EdgeList)

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

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

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

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

    ToArray()

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

    Explicit Interface Implementations

    IEnumerable<Edge>.GetEnumerator()

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

    IEnumerable.GetEnumerator()

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

    Implements

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