SampleDatabaseExtensionsHasSameValues Method

CVB.Net Documentation
Check two 1-dimensional arrays for content equality.

Namespace:  Stemmer.Cvb.SampleDatabase
Assembly:  Stemmer.Cvb.SampleDatabase (in Stemmer.Cvb.SampleDatabase.dll) Version: 14.0.0.0
Syntax

public static bool HasSameValues(
	this float[] a,
	float[] b
)

Parameters

a
Type: SystemSingle
array 1 to be checked
b
Type: SystemSingle
array 2 to be checked

Return Value

Type: Boolean
True if the arrays have identical size and content, false otherwise (or if one of the arrays has > 1 dimension)

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type . When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also

Reference