Detect character set for files, streams and other bytes.
This package is based on Ude and since version 2 also on uchardet, which are ports of the Mozilla Universal Charset Detector.
Features:
- Easy to use API
- Supports frameworks:
- .NET Standard 1.0
- .NET Standard 1.3 and 2.0
-...
More information
Library for advanced formatting of console/terminal output. Format output like HTML using either .NET DSL (like LINQ to XML), or XAML with bindings (like WPF). Supports paragraphs, lists, grids, Unicode formatting, drawing, export to various formats and much more.
# AsciiExtensions
ASCII extensions for .NET
## Instalation
Add *AsciiExtensions.cs* or *AsciiExtensions.dll* to your Visual Studio project.
Add *using System.Text.Ascii;* to your source file.
## Usage
```csharp
var a = "München ist eine āübergrößeā Stadt".ToAscii();
// a : "Munchen ist eine...
More information