VOOZH about

URL: https://www.geeksforgeeks.org/c-sharp/single-isinfinity-method-in-c-sharp-with-example/

⇱ Single.IsInfinity() Method in C# with Example - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Single.IsInfinity() Method in C# with Example

Last Updated : 11 Jul, 2025

In C#, Single.IsInfinity(Single) is a Single struct method. This method is used to check whether a specified floating-point value evaluates to either positive infinity or negative infinity or not. While performing some mathematical operations, it is possible to obtain a result that is either positive infinity or negative infinity. For Example: If any positive value is divided by zero, it results in positive infinity.

Syntax: public static bool IsInfinity (float f); Parameter: <emf: It is a single-precision floating-point number of type System.Single.

Return Type: This method return a boolean value True, if the specified value evaluates to either positive infinity or negative infinity, otherwise return False. Example: 

Output:
Infinity
True
Infinity
True
-Infinity
True

Note: Floating-point operations return PositiveInfinity or NegativeInfinity to signal an overflow condition. Reference:

Comment
Article Tags:

Explore