Single.NegativeInfinity Pole

Definice

Představuje záporné nekonečno. Toto pole je konstantní.

public: float NegativeInfinity = -Infinity;
public const float NegativeInfinity = -Infinity;
val mutable NegativeInfinity : single
Public Const NegativeInfinity As Single  = -Infinity

Hodnota pole

Value = -Infinity

Příklady

Následující příklad kódu ukazuje konstantu NegativeInfinity .

// This will equal Infinity.
Console::WriteLine( "10.0 minus NegativeInfinity equals {0}.", (10.0 - Single::NegativeInfinity) );
// This will equal Infinity.
Console.WriteLine("10.0 minus NegativeInfinity equals {0}.", (10.0 - Single.NegativeInfinity).ToString());
// This will equal Infinity.
printfn $"10.0 minus NegativeInfinity equals {10f - Single.NegativeInfinity}."
' This will equal Infinity.
Console.WriteLine("10.0 minus NegativeInfinity equals " + (10 - Single.NegativeInfinity).ToString() + ".")

Poznámky

Hodnota této konstanty je výsledkem vydělení záporného čísla nulou.

Tato konstanta se vrátí, pokud je výsledek operace menší než MinValue.

Slouží IsNegativeInfinity k určení, jestli se hodnota vyhodnotí jako záporné nekonečno.

Platí pro

Viz také