Show / Hide Table of Contents

    Class DoubleList

    Inheritance
    object
    DoubleList
    Implements
    IList<double>
    ICollection<double>
    IEnumerable<double>
    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.Primitives
    Assembly: DesignData.SDS2.Primitives.dll
    Syntax
    public class DoubleList : IList<double>, ICollection<double>, IEnumerable<double>, IEnumerable

    Constructors

    DoubleList()

    Declaration
    public DoubleList()

    DoubleList(DoubleList)

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

    DoubleList(IEnumerable<double>)

    Declaration
    public DoubleList(IEnumerable<double> c)
    Parameters
    Type Name Description
    IEnumerable<double> c

    DoubleList(IEnumerable)

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

    DoubleList(int)

    Declaration
    public DoubleList(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 double this[int index] { get; set; }
    Parameters
    Type Name Description
    int index
    Property Value
    Type Description
    double

    Methods

    Add(double)

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

    AddRange(DoubleList)

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

    Clear()

    Declaration
    public void Clear()

    Contains(double)

    Declaration
    public bool Contains(double value)
    Parameters
    Type Name Description
    double value
    Returns
    Type Description
    bool

    CopyTo(double[])

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

    CopyTo(double[], int)

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

    CopyTo(int, double[], int, int)

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

    ~DoubleList()

    Declaration
    protected ~DoubleList()

    GetEnumerator()

    Declaration
    public DoubleList.DoubleListEnumerator GetEnumerator()
    Returns
    Type Description
    DoubleList.DoubleListEnumerator

    GetRange(int, int)

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

    IndexOf(double)

    Declaration
    public int IndexOf(double value)
    Parameters
    Type Name Description
    double value
    Returns
    Type Description
    int

    Insert(int, double)

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

    InsertRange(int, DoubleList)

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

    LastIndexOf(double)

    Declaration
    public int LastIndexOf(double value)
    Parameters
    Type Name Description
    double value
    Returns
    Type Description
    int

    Remove(double)

    Declaration
    public bool Remove(double value)
    Parameters
    Type Name Description
    double value
    Returns
    Type Description
    bool

    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(double, int)

    Declaration
    public static DoubleList Repeat(double value, int count)
    Parameters
    Type Name Description
    double value
    int count
    Returns
    Type Description
    DoubleList

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

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

    ToArray()

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

    Implements

    IList<T>
    ICollection<T>
    IEnumerable<T>
    IEnumerable
    Back to top