C# BigInteger MinusOne
Description
BigInteger MinusOne
Gets a value that represents the
number negative one (-1).
Syntax
BigInteger.MinusOne
has the following syntax.
public static BigInteger MinusOne { get; }
Example
using System;/*w w w .jav a 2 s .c o m*/
using System.Numerics;
public class Example
{
public static void Main()
{
Console.WriteLine(BigInteger.MinusOne);
}
}
The code above generates the following result.