WCharT.Net
0.1.3
dotnet add package WCharT.Net --version 0.1.3
NuGet\Install-Package WCharT.Net -Version 0.1.3
<PackageReference Include="WCharT.Net" Version="0.1.3" />
<PackageVersion Include="WCharT.Net" Version="0.1.3" />
<PackageReference Include="WCharT.Net" />
paket add WCharT.Net --version 0.1.3
#r "nuget: WCharT.Net, 0.1.3"
#:package WCharT.Net@0.1.3
#addin nuget:?package=WCharT.Net&version=0.1.3
#tool nuget:?package=WCharT.Net&version=0.1.3
WCharT.Net
Welcome to WCharT.Net a modern cross platform package to interop with WCharT data.
Use
To work with WCharT data create a new instance of WCharTString
:
//Read data from a byte*
byte* pointer = NativeCall();
var str = new WCharTString(pointer).GetString();
//Create a buffer for a native library and read the data after it was filled
ReadOnlySpan<byte> data = new WCharTString(int bufferCharSize);
NativeCall(...);
var str = data.GetString();
//Pass a string to a native library
ReadOnlySpan<byte> data = new WCharTString(string str);
NativeCall(data);
//Can be used in fixed statements
var data = new WCharTString(string str);
fixed (byte* ptr = data)
{
NativeCall(ptr);
}
Build
To build the solution locally execute the following commands:
$ git clone https://github.com/badcel/WCharT.Net.git
$ cd WCharT.Net/src
$ dotnet fsi build.fsx
Native AOT
If the application targets at least .NET 8 the nuget package allows applications to be published as Native AOT as itself is AOT compatible.
Licensing terms
HidApi.Net is licensed under the terms of the MIT-License. Please see the license file for further information.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net8.0
- No dependencies.
-
net9.0
- No dependencies.
NuGet packages (2)
Showing the top 2 NuGet packages that depend on WCharT.Net:
Package | Downloads |
---|---|
HidApi.Net
A modern cross platform C# binding for HIDAPI |
|
Q.HidApi.Net
支持linux-arm64和linux-loongarch64 |
GitHub repositories
This package is not used by any popular GitHub repositories.