|
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.275-beta+5a507085c1b79f1427cd1812b9c3c9c583c21079
Syntaxpublic 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).
RemarksTo optimize performance, this function does not validate that the notEqualToValue is not equal
to the alternateValue.
See Also