WCharT.Net 0.1.2

dotnet add package WCharT.Net --version 0.1.2
NuGet\Install-Package WCharT.Net -Version 0.1.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="WCharT.Net" Version="0.1.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add WCharT.Net --version 0.1.2
#r "nuget: WCharT.Net, 0.1.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// 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

Build StatusNuGetLicense (MIT)

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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • 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.

Version Downloads Last updated
0.1.2 159 6/16/2024
0.1.1 972 5/25/2024
0.1.0 86 5/24/2024