Represents a collection of Parameter objects.

Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

Visual Basic (Declaration)
Public Class ParameterCollection _
	Inherits CollectionBase
C#
public class ParameterCollection : CollectionBase
C++
public ref class ParameterCollection : public CollectionBase

Methods

IconTypeDescription
Clear()
Removes all objects from the CollectionBase instance. This method cannot be overridden.
Contains(Parameter)
Determines whether a Parameter is in the collection.
CopyTo(Parameter[](), Int32)
Copies the entire ParameterCollection to a Parameter array.
Equals(Object)
Determines whether the specified Object is equal to the current Object.
Finalize()
Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
GetEnumerator()
Returns an enumerator that iterates through the CollectionBase instance.
GetHashCode()
Serves as a hash function for a particular type.
GetType()
Gets the Type of the current instance.
IndexOf(Parameter)
Returns the zero-based index of a Parameter in the collection.
MemberwiseClone()
Creates a shallow copy of the current Object.
OnClear()
Performs additional custom processes when clearing the contents of the CollectionBase instance.
OnClearComplete()
Performs additional custom processes after clearing the contents of the CollectionBase instance.
OnInsert(Int32, Object)
Performs additional custom processes before inserting a new element into the CollectionBase instance.
OnInsertComplete(Int32, Object)
Performs additional custom processes after inserting a new element into the CollectionBase instance.
OnRemove(Int32, Object)
Performs additional custom processes when removing an element from the CollectionBase instance.
OnRemoveComplete(Int32, Object)
Performs additional custom processes after removing an element from the CollectionBase instance.
OnSet(Int32, Object, Object)
Performs additional custom processes before setting a value in the CollectionBase instance.
OnSetComplete(Int32, Object, Object)
Performs additional custom processes after setting a value in the CollectionBase instance.
OnValidate(Object)
Performs additional custom processes when validating a value.
RemoveAt(Int32)
Removes the element at the specified index of the CollectionBase instance. This method is not overridable.
ToString()
Returns a String that represents the current Object.

Properties

IconTypeDescription
Capacity
Gets or sets the number of elements that the CollectionBase can contain.
Count
Gets the number of elements contained in the CollectionBase instance. This property cannot be overridden.
InnerList
Gets an ArrayList containing the list of elements in the CollectionBase instance.
Item(String)
Gets the Parameter with the specified name.
Item(Int32)
Gets the Parameter at the specified index in the collection.
List
Gets an IList containing the list of elements in the CollectionBase instance.

Inheritance Hierarchy

System.Object
  System.Collections.CollectionBase
    Extreme.Statistics.ParameterCollection