C# Single GreaterThan

Description

Single GreaterThan returns a value that indicates whether a specified Single value is greater than another specified Single value.

Syntax

Single.GreaterThan has the following syntax.


public static bool operator >(
  float left,
  float right
)

Parameters

Single.GreaterThan has the following parameters.

  • left - The first value to compare.
  • right - The second value to compare.

Returns

Single.GreaterThan method returns true if left is greater than right; otherwise, false.

Example

The GreaterThan method defines the operation of the greater-than operator for Single values.


using System;//from  w  w w  .  j  ava 2 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.





















Home »
  C# Tutorial »
    System »




Array
BitConverter
Boolean
Byte
Char
Console
ConsoleKeyInfo
Convert
DateTime
DateTimeOffset
Decimal
Double
Enum
Environment
Exception
Guid
Int16
Int32
Int64
Math
OperatingSystem
Random
SByte
Single
String
StringComparer
TimeSpan
TimeZone
TimeZoneInfo
Tuple
Tuple
Tuple
Type
UInt16
UInt32
UInt64
Uri
Version