Click or drag to resize

NumericExtensionsNotEqualToT Method

Ensures test parameter passed to function is not equal to the specified value.

Namespace: GSF
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.181-beta
Syntax
public static T NotEqualTo<T>(
	this T source,
	T notEqualToValue,
	T alternateValue
)
where T : Object, IEquatable<T>
View Source

Parameters

source  T
Value to test.
notEqualToValue  T
Value that represents the undesired value (e.g., zero).
alternateValue  T
Value to return if source is equal to the undesired value.

Type Parameters

T
Structure or class that implements IEquatable(Of T) (e.g., Double, Single, Integer, etc.).

Return Value

T
A value not equal to notEqualToValue.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type T. 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).
Remarks
To optimize performance, this function does not validate that the notEqualToValue is not equal to the alternateValue.
See Also