本文整理匯總了C#中System.Numerics.BigInteger.ToByteArray方法的典型用法代碼示例。如果您正苦於以下問題:C# BigInteger.ToByteArray方法的具體用法?C# BigInteger.ToByteArray怎麽用?C# BigInteger.ToByteArray使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類System.Numerics.BigInteger
的用法示例。
在下文中一共展示了BigInteger.ToByteArray方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: Main
//引入命名空間
using System;
using System.Numerics;
public class Example
{
static byte[] bytes;
public static void Main()
{
BigInteger[] numbers = { BigInteger.MinusOne, BigInteger.One,
BigInteger.Zero, 120, 128, 255, 1024,
Int64.MinValue, Int64.MaxValue,
BigInteger.Parse("90123123981293054321") };
foreach (BigInteger number in numbers)
{
bytes = number.ToByteArray();
Console.Write("{0} ({1}) -> ", number, number.ToString(GetSpecifier()));
Console.Write("{0} bytes: ", bytes.Length);
foreach (byte byteValue in bytes)
Console.Write("{0:X2} ", byteValue);
Console.WriteLine();
}
}
private static string GetSpecifier()
{
return "X" + (bytes.Length * 2).ToString();
}
}
輸出:
-1 (FF) -> 1 bytes: FF 1 (01) -> 1 bytes: 01 0 (00) -> 1 bytes: 00 120 (78) -> 1 bytes: 78 128 (0080) -> 2 bytes: 80 00 255 (00FF) -> 2 bytes: FF 00 1024 (0400) -> 2 bytes: 00 04 -9223372036854775808 (8000000000000000) -> 8 bytes: 00 00 00 00 00 00 00 80 9223372036854775807 (7FFFFFFFFFFFFFFF) -> 8 bytes: FF FF FF FF FF FF FF 7F 90123123981293054321 (04E2B5A7C4A975E971) -> 9 bytes: 71 E9 75 A9 C4 A7 B5 E2 04