Text.UTF8.Legacy
1.0.0
See the version list below for details.
Install-Package Text.UTF8.Legacy -Version 1.0.0
dotnet add package Text.UTF8.Legacy --version 1.0.0
<PackageReference Include="Text.UTF8.Legacy" Version="1.0.0" />
paket add Text.UTF8.Legacy --version 1.0.0
#r "nuget: Text.UTF8.Legacy, 1.0.0"
// Install Text.UTF8.Legacy as a Cake Addin
#addin nuget:?package=Text.UTF8.Legacy&version=1.0.0
// Install Text.UTF8.Legacy as a Cake Tool
#tool nuget:?package=Text.UTF8.Legacy&version=1.0.0
Text.UTF8.Legacy
A package replacement for .Net Standard's UTF8 string encoding/decoding implementation.
Description
As of .Net Core 3.0+ a bug was fixed in Microsoft's UTF8 implementation that changes the behavior of UTF8 string encoding and decoding. This package offers the legacy behavior that is still present in .Net Framework today for maximum compatibility when using .Net Core 3.0+.
Installation
Install Text.UTF8.Legacy from the Package Manager Console:
PM> Install-Package Text.UTF8.Legacy
Usage
UTF8 String decoding
using Text.UTF8.Legacy;
var bytes = // byte representation of a UTF8 string
var utf8String = Text.UTF8.Legacy.Encoding.UTF8.GetString(bytes);
UTF8 String encoding
using Text.UTF8.Legacy;
var string = "A test string";
var bytes = Text.UTF8.Legacy.Encoding.UTF8.GetBytes(string);
Compatibility
See .NET Core 3.0 follows Unicode best practices when replacing ill-formed UTF-8 byte sequences Issue Report
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows |
.NET Core | netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard2.0 netstandard2.1 |
.NET Framework | net461 net462 net463 net47 net471 net472 net48 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.NETFramework 4.8
- System.Memory (>= 4.5.3)
-
.NETStandard 2.0
- System.Memory (>= 4.5.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Legacy implementation of UTF8 encode/decode for .Net Standard 2.0+