CheckFileEncoding 1.0.0

There is a newer version of this package available.
See the version list below for details.
The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package CheckFileEncoding --version 1.0.0
                    
NuGet\Install-Package CheckFileEncoding -Version 1.0.0
                    
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="CheckFileEncoding" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="CheckFileEncoding" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="CheckFileEncoding" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add CheckFileEncoding --version 1.0.0
                    
#r "nuget: CheckFileEncoding, 1.0.0"
                    
#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.
#:package CheckFileEncoding@1.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=CheckFileEncoding&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=CheckFileEncoding&version=1.0.0
                    
Install as a Cake Tool

check_your_encoding

A nuget for encoding detection of the 3 most common encodings with BOM.

  • UTF-8
  • UTF-16(BE)
  • UTF-16(LE)

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.

Installing

To install CheckFileEncoding

Say what the step will be

Give the example

And repeat

until finished

End with an example of getting some data out of the system or using it for a little demo

Usage/Examples

using CheckFileEncoding

//you can use the premade chain to go through all the encoding checks
var chain = Factory.EncodingChain;

//Call ClientCodeMethod and add the chain and path to the file you want to check
Client.ClientCode(chain, @"c:\users\username\Desktop\file_name.txt");

//Or you can call the methods one at a time
var utf8 = new UTF8Handler();

//Add the path to the file you want to check
utf8.Handle(@"c:\users\username\desktop\file_name.txt");

//If the encoding is found. Response should be something like this: 
The document is encoded with UTF16(LE)/LittleEndian

//If not, it should be something like this: 
Document is not encoded with UTF16(LE)/LittleEndian.
Please try another.

Built With

Contributing

Contributions are always welcome!

Authors

*ItsSteph

See also the list of contributors who participated in this project.

License

No licens

Acknowledgments

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 was computed.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.3 829 1/23/2022
1.0.1 592 1/22/2022