|
NumericExtensionsNotEqualToT Method
|
Ensures test parameter passed to function is not equal to the specified value.
Namespace: GSFAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.205-beta+5ef4169f3b1079d8b163dd363614f656bd140924
Syntax public static T NotEqualTo<T>(
this T source,
T notEqualToValue,
T alternateValue
)
where T : Object, IEquatable<T>
JavaScript does not support generic types or methods.
View SourceParameters
- 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
TA 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