WCharT.Net
0.1.2
dotnet add package WCharT.Net --version 0.1.2
NuGet\Install-Package WCharT.Net -Version 0.1.2
<PackageReference Include="WCharT.Net" Version="0.1.2" />
paket add WCharT.Net --version 0.1.2
#r "nuget: WCharT.Net, 0.1.2"
// Install WCharT.Net as a Cake Addin #addin nuget:?package=WCharT.Net&version=0.1.2 // Install WCharT.Net as a Cake Tool #tool nuget:?package=WCharT.Net&version=0.1.2
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 | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. 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. |
-
net6.0
- No dependencies.
-
net8.0
- No dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on WCharT.Net:
Package | Downloads |
---|---|
HidApi.Net
A modern cross platform C# binding for HIDAPI |
GitHub repositories
This package is not used by any popular GitHub repositories.