C# Single Inequality
Description
Single Inequality
returns a value that indicates whether
two specified Single values are not equal.
Syntax
Single.Inequality
has the following syntax.
public static bool operator !=(
float left,
float right
)
Parameters
Single.Inequality
has the following parameters.
left
- The first value to compare.right
- The second value to compare.
Returns
Single.Inequality
method returns true if left and right are not equal; otherwise, false.
Example
The Inequality method defines the inequality operator for Single values.
using System;/*from ww w. ja v a2 s. c o m*/
public class MainClass{
public static void Main(String[] argv){
float f1 = 1.2F;
float f2 = 1.2F;
Console.WriteLine(f1 != f2);
}
}
The code above generates the following result.