|   | 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.257-beta+00aa2366fbb9ec75f636ebc7cfa610e3826a727c
 Syntax
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.
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
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
RemarksTo optimize performance, this function does not validate that the notEqualToValue is not equal
            to the alternateValue.
 See Also
See Also