System.Text.Encoding.CodePages 10.0.1

About

System.Text.Encoding.CodePages enable creating single and double bytes encodings for code pages that otherwise are available only in the desktop .NET Framework.

Key Features

  • Support single and double byte encodings for code pages that are not available in .NET Core.

How to Use

using System.Text;

// Register the CodePages encoding provider at application startup to enable using single and double byte encodings.
Encoding.RegisterProvider(CodePagesEncodingProvider.Instance);

// Now can create single and double byte encodings for code pages that are not available in .NET Core.
Encoding windows1252Encoding = Encoding.GetEncoding(1252); // Western European (Windows)
byte[] encodedBytes = windows1252Encoding.GetBytes("String to encode");

Main Types

The main types provided by this library are:

  • CodePagesEncodingProvider

Additional Documentation

Feedback & Contributing

System.Text.Encoding.CodePages is released as open source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.

Showing the top 20 packages that depend on System.Text.Encoding.CodePages.

Packages Downloads
AngleSharp
AngleSharp is the ultimate angle brackets parser library. It parses HTML5, CSS3, and XML to construct a DOM based on the official W3C specification.
17
AngleSharp
AngleSharp is the ultimate angle brackets parser library. It parses HTML5, CSS3, and XML to construct a DOM based on the official W3C specification.
18
AngleSharp
AngleSharp is the ultimate angle brackets parser library. It parses HTML5, CSS3, and XML to construct a DOM based on the official W3C specification.
19
Microsoft.CodeAnalysis.Common
A shared package used by the Microsoft .NET Compiler Platform ("Roslyn"). Do not install this package manually, it will be added as a prerequisite by other packages that require it. More details at https://aka.ms/roslyn-packages This package was built from the source at https://github.com/dotnet/roslyn/commit/e091728607ca0fc9efca55ccfb3e59259c6b5a0a.
41
Microsoft.CodeAnalysis.Common
A shared package used by the Microsoft .NET Compiler Platform ("Roslyn"). Do not install this package manually, it will be added as a prerequisite by other packages that require it. More details at https://aka.ms/roslyn-packages This package was built from the source at https://github.com/dotnet/roslyn/commit/e595ee276d14e14bfb3eb323fb57f2aa668bddea
19
Microsoft.CodeAnalysis.Common
A shared package used by the Microsoft .NET Compiler Platform ("Roslyn"). Do not install this package manually, it will be added as a prerequisite by other packages that require it. Supported Platforms: - .NET Framework 4.5 - Windows 8 - Portable Class Libraries
17
Microsoft.CodeAnalysis.Features
.NET Compiler Platform ("Roslyn") support for creating editing experiences. More details at https://aka.ms/roslyn-packages This package was built from the source at https://github.com/dotnet/roslyn/commit/8edf7bcd4f1594c3d68a6a567469f41dbd33dd1b.
18
Microsoft.CodeAnalysis.Features
.NET Compiler Platform ("Roslyn") support for creating editing experiences. More details at https://aka.ms/roslyn-packages This package was built from the source at https://github.com/dotnet/roslyn/commit/e68227ea677b76a3c603bd616f03ea6d952b2458.
19
Microsoft.CodeAnalysis.Workspaces.Common
A shared package used by the .NET Compiler Platform ("Roslyn") including support for analyzing projects and solutions. Do not install this package manually, it will be added as a prerequisite by other packages that require it. More details at https://aka.ms/roslyn-packages This package was built from the source at https://github.com/dotnet/roslyn/commit/75e79dace86b274327a1afe479228d82a06051a4.
20
Microsoft.CodeAnalysis.Workspaces.Common
A shared package used by the .NET Compiler Platform ("Roslyn") including support for analyzing projects and solutions. Do not install this package manually, it will be added as a prerequisite by other packages that require it. More details at https://aka.ms/roslyn-packages This package was built from the source at https://github.com/dotnet/roslyn/commit/be9c072e1c8a9e6701e34d796b1d68098d08feab.
19
Microsoft.CodeAnalysis.Workspaces.Common
A shared package used by the .NET Compiler Platform ("Roslyn") including support for analyzing projects and solutions. Do not install this package manually, it will be added as a prerequisite by other packages that require it. More details at https://aka.ms/roslyn-packages This package was built from the source at https://github.com/dotnet/roslyn/commit/f99bb16a395e48a05520ba7af1549b20bfdeee36.
19
Microsoft.Data.SqlClient
Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS) Commonly Used Types: Microsoft.Data.SqlClient.SqlConnection Microsoft.Data.SqlClient.SqlException Microsoft.Data.SqlClient.SqlParameter Microsoft.Data.SqlClient.SqlDataReader Microsoft.Data.SqlClient.SqlCommand Microsoft.Data.SqlClient.SqlTransaction Microsoft.Data.SqlClient.SqlParameterCollection Microsoft.Data.SqlClient.SqlClientFactory When using NuGet 3.x this package requires at least version 3.4.
20
Microsoft.NETCore.UniversalWindowsPlatform
Provides a set of packages that can be used when building Universal Windows applications on .NETCore. d67bd83a075b8b10cb95810568073c1a3211f28b When using NuGet 3.x this package requires at least version 3.4.
17
MimeKit
MimeKit is an Open Source library for creating and parsing MIME, S/MIME and PGP messages on desktop and mobile platforms. It also supports parsing of Unix mbox files. Unlike any other .NET MIME parser, MimeKit's parser does not need to parse string input nor does it use a TextReader. Instead, it parses raw byte streams, thus allowing it to better support undeclared 8bit text in headers as well as message bodies. It also means that MimeKit's parser is significantly faster than other .NET MIME parsers. MimeKit's parser also uses a real tokenizer when parsing the headers rather than regex or string.Split() like most other .NET MIME parsers. This means that MimeKit is much more RFC-compliant than any other .NET MIME parser out there, including the commercial implementations. In addition to having a far superior parser implementation, MimeKit's object tree is not a derivative of System.Net.Mail objects and thus does not suffer from System.Net.Mail's limitations. API documentation can be found on the web at http://www.mimekit.net/docs For those that need SMTP, POP3 or IMAP support, check out https://github.com/jstedfast/MailKit
17
MimeKit
MimeKit is an Open Source library for creating and parsing MIME, S/MIME and PGP messages on desktop and mobile platforms. It also supports parsing of Unix mbox files. Unlike any other .NET MIME parser, MimeKit's parser does not need to parse string input nor does it use a TextReader. Instead, it parses raw byte streams, thus allowing it to better support undeclared 8bit text in headers as well as message bodies. It also means that MimeKit's parser is significantly faster than other .NET MIME parsers. MimeKit's parser also uses a real tokenizer when parsing the headers rather than regex or string.Split() like most other .NET MIME parsers. This means that MimeKit is much more RFC-compliant than any other .NET MIME parser out there, including the commercial implementations. In addition to having a far superior parser implementation, MimeKit's object tree is not a derivative of System.Net.Mail objects and thus does not suffer from System.Net.Mail's limitations. API documentation can be found on the web at http://www.mimekit.net/docs For those that need SMTP, POP3 or IMAP support, check out https://github.com/jstedfast/MailKit
18
MimeKit
MimeKit is an Open Source library for creating and parsing MIME, S/MIME and PGP messages on desktop and mobile platforms. It also supports parsing of Unix mbox files. Unlike any other .NET MIME parser, MimeKit's parser does not need to parse string input nor does it use a TextReader. Instead, it parses raw byte streams, thus allowing it to better support undeclared 8bit text in headers as well as message bodies. It also means that MimeKit's parser is significantly faster than other .NET MIME parsers. MimeKit's parser also uses a real tokenizer when parsing the headers rather than regex or string.Split() like most other .NET MIME parsers. This means that MimeKit is much more RFC-compliant than any other .NET MIME parser out there, including the commercial implementations. In addition to having a far superior parser implementation, MimeKit's object tree is not a derivative of System.Net.Mail objects and thus does not suffer from System.Net.Mail's limitations. API documentation can be found on the web at http://www.mimekit.net/docs For those that need SMTP, POP3 or IMAP support, check out https://github.com/jstedfast/MailKit
21
MimeKit
MimeKit is an Open Source library for creating and parsing MIME, S/MIME and PGP messages on desktop and mobile platforms. It also supports parsing of Unix mbox files. Unlike any other .NET MIME parser, MimeKit's parser does not need to parse string input nor does it use a TextReader. Instead, it parses raw byte streams, thus allowing it to better support undeclared 8bit text in headers as well as message bodies. It also means that MimeKit's parser is significantly faster than other .NET MIME parsers. MimeKit's parser also uses a real tokenizer when parsing the headers rather than regex or string.Split() like most other .NET MIME parsers. This means that MimeKit is much more RFC-compliant than any other .NET MIME parser out there, including the commercial implementations. In addition to having a far superior parser implementation, MimeKit's object tree is not a derivative of System.Net.Mail objects and thus does not suffer from System.Net.Mail's limitations. API documentation can be found on the web at http://www.mimekit.net/docs For those that need SMTP, POP3 or IMAP support, check out https://github.com/jstedfast/MailKit
26
System.Data.SqlClient
Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS) Commonly Used Types: System.Data.SqlClient.SqlConnection System.Data.SqlClient.SqlException System.Data.SqlClient.SqlParameter System.Data.SqlDbType System.Data.SqlClient.SqlDataReader System.Data.SqlClient.SqlCommand System.Data.SqlClient.SqlTransaction System.Data.SqlClient.SqlParameterCollection System.Data.SqlClient.SqlClientFactory 0f6d0a02c9cc2e766dd543ff24135f16e9a971e4 When using NuGet 3.x this package requires at least version 3.4.
19
System.Data.SqlClient
Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS) Commonly Used Types: System.Data.SqlClient.SqlConnection System.Data.SqlClient.SqlException System.Data.SqlClient.SqlParameter System.Data.SqlDbType System.Data.SqlClient.SqlDataReader System.Data.SqlClient.SqlCommand System.Data.SqlClient.SqlTransaction System.Data.SqlClient.SqlParameterCollection System.Data.SqlClient.SqlClientFactory 215f374988eba0829f6880026909851ed04a8638 When using NuGet 3.x this package requires at least version 3.4.
18
System.Data.SqlClient
Provides the data provider for SQL Server. These classes provide access to versions of SQL Server and encapsulate database-specific protocols, including tabular data stream (TDS) Commonly Used Types: System.Data.SqlClient.SqlConnection System.Data.SqlClient.SqlException System.Data.SqlClient.SqlParameter System.Data.SqlDbType System.Data.SqlClient.SqlDataReader System.Data.SqlClient.SqlCommand System.Data.SqlClient.SqlTransaction System.Data.SqlClient.SqlParameterCollection System.Data.SqlClient.SqlClientFactory 7e3dbdb95b30650eabade0ac73a10b22d4dbe8b3 When using NuGet 3.x this package requires at least version 3.4.
19

.NET Framework 4.6.2

.NET 8.0

  • No dependencies.

.NET 9.0

  • No dependencies.

.NET 10.0

  • No dependencies.

.NET Standard 2.0

Version Downloads Last updated
10.0.1 1 14.12.2025
10.0.0 1 18.12.2025
10.0.0-rc.2.25502.107 1 18.12.2025
10.0.0-rc.1.25451.107 1 18.12.2025
10.0.0-preview.7.25380.108 5 20.08.2025
10.0.0-preview.6.25358.103 3 06.08.2025
10.0.0-preview.5.25277.114 4 08.06.2025
10.0.0-preview.4.25258.110 10 15.05.2025
10.0.0-preview.3.25171.5 6 13.05.2025
10.0.0-preview.2.25163.2 7 27.03.2025
10.0.0-preview.1.25080.5 6 13.03.2025
9.0.11 1 18.12.2025
9.0.10 1 18.12.2025
9.0.9 4 16.09.2025
9.0.8 5 21.08.2025
9.0.7 5 05.08.2025
9.0.6 8 18.06.2025
9.0.5 11 15.05.2025
9.0.4 10 13.05.2025
9.0.3 10 13.03.2025
9.0.2 12 18.02.2025
9.0.1 13 16.01.2025
9.0.0 12 28.11.2024
9.0.0-rc.2.24473.5 8 11.10.2024
9.0.0-rc.1.24431.7 8 19.09.2024
9.0.0-preview.7.24405.7 11 21.08.2024
9.0.0-preview.6.24327.7 8 24.07.2024
9.0.0-preview.5.24306.7 9 04.07.2024
9.0.0-preview.4.24266.19 7 29.12.2024
9.0.0-preview.3.24172.9 8 04.07.2024
9.0.0-preview.2.24128.5 9 28.07.2024
9.0.0-preview.1.24080.9 7 29.12.2024
8.0.0 16 16.07.2024
8.0.0-rc.2.23479.6 7 07.01.2025
8.0.0-rc.1.23419.4 8 24.07.2024
8.0.0-preview.7.23375.6 9 21.07.2024
8.0.0-preview.6.23329.7 4 24.09.2024
8.0.0-preview.5.23280.8 9 21.07.2024
8.0.0-preview.4.23259.5 8 21.07.2024
8.0.0-preview.3.23174.8 10 18.07.2024
8.0.0-preview.2.23128.3 7 11.01.2025
8.0.0-preview.1.23110.8 9 27.07.2024
7.0.0 12 24.07.2024
7.0.0-rc.2.22472.3 9 27.07.2024
7.0.0-rc.1.22426.10 8 17.07.2024
7.0.0-preview.7.22375.6 7 29.12.2024
7.0.0-preview.6.22324.4 7 29.12.2024
7.0.0-preview.5.22301.12 7 29.12.2024
7.0.0-preview.4.22229.4 10 15.07.2024
7.0.0-preview.3.22175.4 9 20.07.2024
7.0.0-preview.2.22152.2 9 21.07.2024
7.0.0-preview.1.22076.8 10 26.07.2024
6.0.1 10 07.01.2025
6.0.0 21 19.07.2024
6.0.0-rc.2.21480.5 7 08.01.2025
6.0.0-rc.1.21451.13 9 16.07.2024
6.0.0-preview.7.21377.19 9 31.07.2024
6.0.0-preview.6.21352.12 9 16.07.2024
6.0.0-preview.5.21301.5 9 18.07.2024
6.0.0-preview.4.21253.7 7 29.12.2024
6.0.0-preview.3.21201.4 6 29.12.2024
6.0.0-preview.2.21154.6 9 20.07.2024
6.0.0-preview.1.21102.12 9 24.09.2024
5.0.0 12 18.07.2024
5.0.0-rc.2.20475.5 8 04.07.2024
5.0.0-rc.1.20451.14 7 19.07.2024
5.0.0-preview.8.20407.11 10 24.09.2024
5.0.0-preview.7.20364.11 9 26.07.2024
5.0.0-preview.6.20305.6 5 25.07.2024
5.0.0-preview.5.20278.1 8 24.07.2024
5.0.0-preview.4.20251.6 8 26.07.2024
5.0.0-preview.3.20214.6 9 16.07.2024
5.0.0-preview.2.20160.6 8 16.07.2024
5.0.0-preview.1.20120.5 7 06.01.2025
4.7.1 12 26.07.2024
4.7.0 14 04.07.2024
4.7.0-preview3.19551.4 7 07.01.2025
4.7.0-preview2.19523.17 8 21.07.2024
4.7.0-preview1.19504.10 8 04.07.2024
4.6.0 8 13.03.2025
4.6.0-rc1.19456.4 9 15.07.2024
4.6.0-preview9.19421.4 8 26.07.2024
4.6.0-preview9.19416.11 12 18.07.2024
4.6.0-preview8.19405.3 7 15.07.2024
4.6.0-preview7.19362.9 7 14.01.2025
4.6.0-preview6.19303.8 11 25.07.2024
4.6.0-preview6.19264.9 8 16.07.2024
4.6.0-preview5.19224.8 8 17.07.2024
4.6.0-preview4.19212.13 6 04.07.2024
4.6.0-preview3.19128.7 9 04.07.2024
4.6.0-preview.19073.11 8 29.07.2024
4.6.0-preview.18571.3 7 07.01.2025
4.5.1 15 17.07.2024
4.5.1-servicing-27114-05 8 26.07.2024
4.5.0 14 17.07.2024
4.5.0-rc1 10 24.07.2024
4.5.0-preview2-26406-04 8 30.12.2024
4.5.0-preview1-26216-02 8 25.07.2024
4.5.0-preview1-25914-04 9 04.07.2024
4.4.0 13 04.07.2024
4.4.0-preview2-25405-01 7 29.12.2024
4.4.0-preview1-25305-02 7 30.12.2024
4.3.0 12 09.01.2025
4.3.0-preview1-24530-04 8 04.07.2024
4.0.1 13 27.07.2024
4.0.1-rc2-24027 7 10.01.2025
4.0.1-beta-23516 10 04.07.2024
4.0.1-beta-23409 10 21.07.2024
4.0.1-beta-23225 10 16.07.2024
4.0.0 12 20.07.2024
4.0.0-beta-23109 10 12.01.2025
4.0.0-beta-23019 9 26.07.2024
4.0.0-beta-22816 10 21.07.2024
4.0.0-beta-22605 9 27.07.2024
4.0.0-beta-22416 8 04.07.2024
4.0.0-beta-22231 9 17.07.2024