Returns a value that indicates whether the VariableCollection contains the specified variable.

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

Syntax

Visual Basic (Declaration)
Public Function ContainsName ( _
	name As String _
) As Boolean
C#
public bool ContainsName (
	string name
)
C++
public:
bool ContainsName (
	String^ name
)

Parameters

name (System.String)
A String containing the name to look up.

Return Value

true if there is a variable named name in this collection; otherwise false.

Remarks

This method performs a linear search. The average execution time is proportional to Count.