From 95c7e56b95d259fa33d5c67dbddd922eb9e710f3 Mon Sep 17 00:00:00 2001 From: neuecc Date: Wed, 1 Mar 2023 16:08:32 +0900 Subject: [PATCH] CLong --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a502c14..6e6fff4 100644 --- a/README.md +++ b/README.md @@ -263,7 +263,7 @@ internal static unsafe partial class NativeMethods } ``` -`csharp_c_long_convert` and `csharp_c_ulong_convert` configure how handles `c_long` and `c_ulong` to C# type. default is to `int` and `uint` because `LLP64` is 32bit representation but you can change it to 64bit. +`csharp_c_long_convert` and `csharp_c_ulong_convert` configure how handles `c_long` and `c_ulong` to C# type. default is to `int` and `uint` because `LLP64` is 32bit representation but you can change it to 64bit or use [CLong](https://learn.microsoft.com/en-us/dotnet/api/system.runtime.interopservices.clong)/CULong struct after .NET 6. ## Builder options: Rust to C#