13 lines
239 B
C#
13 lines
239 B
C#
using System.Numerics;
|
|
|
|
namespace GostXades.Helpers
|
|
{
|
|
public static class ConvertHelper
|
|
{
|
|
public static string BigIntegerToHex(string str)
|
|
{
|
|
return BigInteger.Parse(str).ToString("X");
|
|
}
|
|
}
|
|
}
|