nanoFramework.System.Buffers.Helpers
1.0.201
Prefix Reserved
See the version list below for details.
dotnet add package nanoFramework.System.Buffers.Helpers --version 1.0.201
NuGet\Install-Package nanoFramework.System.Buffers.Helpers -Version 1.0.201
<PackageReference Include="nanoFramework.System.Buffers.Helpers" Version="1.0.201" />
<PackageVersion Include="nanoFramework.System.Buffers.Helpers" Version="1.0.201" />
<PackageReference Include="nanoFramework.System.Buffers.Helpers" />
paket add nanoFramework.System.Buffers.Helpers --version 1.0.201
#r "nuget: nanoFramework.System.Buffers.Helpers, 1.0.201"
#:package nanoFramework.System.Buffers.Helpers@1.0.201
#addin nuget:?package=nanoFramework.System.Buffers.Helpers&version=1.0.201
#tool nuget:?package=nanoFramework.System.Buffers.Helpers&version=1.0.201
System.Buffers.Helpers
Contains an IBitConverter interface with both Big and Little Endian implementations.
Comes in utile when received data is encoded in another Endian way. Examples are:
- Networking data which is encoded in Big Endian. Hence when reading or writing UDP or TCP packets the data needs to be decoded or encoded with a Big Endian converter.
- Serialized data could be encoded in one Endian way or another. Hence the data needs to be read with the appropriate converter.
Suppose a byte[] is received which contains a double. The transmitter of the data could be Big or Little Endian encoded. The IBitConverter allows to use the implementation as needed:
internal class SerializationComponent
{
private readonly IBitConverter bitConverter;
public SerializationComponent(bool dataIsLittleEndian)
{
bitConverter = dataIsLittleEndian ? EndianBitConverter.Little : EndianBitConverter.Big;
}
public double ReceivedDoubleInData(byte[] data)
{
return bitConverter.ToDouble(data);
}
}
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET Framework | net is compatible. |
-
- nanoFramework.CoreLibrary (>= 1.17.11)
- nanoFramework.System.Buffers.Binary.BinaryPrimitives (>= 1.2.862)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on nanoFramework.System.Buffers.Helpers:
| Package | Downloads |
|---|---|
|
nanoFramework.Iot.Device.MulticastDns
This package includes the .NET IoT Core binding Iot.Device.MulticastDns for .NET nanoFramework C# projects. |
|
|
CCSWE.nanoFramework.MdnsServer
A reusable mDNS responder server for nanoFramework with dependency injection support. Automatically handles A, PTR, SRV, and TXT queries based on registered hostname, IP address, and service instances. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 2.0.0-preview.62 | 33 | 5/13/2026 |
| 2.0.0-preview.45 | 74 | 4/29/2026 |
| 2.0.0-preview.32 | 65 | 4/20/2026 |
| 2.0.0-preview.16 | 99 | 3/10/2026 |
| 1.0.201 | 1,056 | 10/2/2025 |
| 1.0.158 | 683 | 4/2/2025 |
| 1.0.146 | 375 | 3/11/2025 |
| 1.0.116 | 635 | 2/26/2025 |
| 1.0.69 | 481 | 2/4/2025 |
| 1.0.66 | 258 | 2/4/2025 |
| 1.0.49 | 353 | 1/31/2025 |
| 1.0.31 | 398 | 1/13/2025 |
| 1.0.1 | 434 | 12/19/2024 |