![]() |
VOOZH | about |
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" />Directory.Packages.props
<PackageReference Include="WCharT.Net" />Project file
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.3Install as a Cake Addin
#tool nuget:?package=WCharT.Net&version=0.1.3Install as a Cake Tool
👁 Build Status
👁 NuGet
👁 License (MIT)
Welcome to WCharT.Net a modern cross platform package to interop with WCharT data.
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);
}
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
If the application targets at least .NET 8 the nuget package allows applications to be published as Native AOT as itself is AOT compatible.
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 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 is compatible. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
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 |
This package is not used by any popular GitHub repositories.