| Description |
If Value is NegativeInfinity then the result is true otherwise false.
An infinite value results from a division by zero.
|
| | Notes | Static methods are not methods of an object - they are simply class functions or procedures available at any time.
|
|
| Microsoft MSDN Links |
System
System.Single
|
|
|
| A simple example |
program Project1;
{$APPTYPE CONSOLE}
var
value : Single;
begin
value := -1/0;
if System.Single.IsNegativeInfinity(value)
then Console.WriteLine('-1/0 is negative infinite')
else Console.WriteLine('-1/0 is not negative inifinite');
Console.ReadLine;
end.
| | Show full unit code | -1/0 is negative infinite
|
| |
|
|
|