Skip to content

Other Special Types

BigInteger

C# TypeJS Type
BigIntegerBigInt

.NET BigInteger converts to and from JavaScript BigInt with no loss in precision. (Conversion internally allocates and copies memory for the number data.) The JSBigInt class supports working directly with JS BigInt values, and converting to/from .NET BigInteger.

Guid

C# TypeJS Type
Guidstring

A .NET Guid is marshalled to JS as a string in the default "D" format. Marshalling in the other direction supports any format accepted by Guid.Parse().

Released under the MIT license