Hi,
How can I convert a 20 digits (BIGINT) from string to a number?
I tried Int64, long and long but non worked for me
ulong.Parse("78103100000002874465")
Kindly help..
Thanks,
Jassim
Hi,
How can I convert a 20 digits (BIGINT) from string to a number?
I tried Int64, long and long but non worked for me
ulong.Parse("78103100000002874465")
Kindly help..
Thanks,
Jassim
That value exceeds the maximum value that a ulong/UInt64 can hold, but you can use a BigInteger:
System.Numerics.BigInteger.Parse("78103100000002874465")
7 people are following this question.
Insert a node as child ,before or after a node in nested dynamic JSON Node using C#
Visual Studio 2019: Undefined behavior in a C++/CLI wrapper project.
Example for how to get Package Metadata from Azure DevOps Rest-Api Artifacts using c#
How to collapse individual nested grids/stackpanels inside a grid?