C# BigInteger Zero
Description
BigInteger Zero
Gets a value that represents the number
0 (zero).
Syntax
BigInteger.Zero
has the following syntax.
public static BigInteger Zero { get; }
Example
// w w w . jav a 2 s .c om
using System;
using System.Numerics;
public class Example
{
public static void Main()
{
Console.WriteLine(BigInteger.Zero);
}
}
The code above generates the following result.