mirror of
https://github.com/claunia/Claunia.Encoding.git
synced 2025-12-16 19:24:43 +00:00
Added missing documentaiton.
This commit is contained in:
@@ -26,11 +26,26 @@
|
||||
|
||||
namespace Claunia.Encoding
|
||||
{
|
||||
/// <summary>
|
||||
/// This class contains static instances of the supported encodings.
|
||||
/// </summary>
|
||||
public static class Encoding
|
||||
{
|
||||
/// <summary>
|
||||
/// Static instance for the LisaRoman encoding
|
||||
/// </summary>
|
||||
public static System.Text.Encoding LisaEncoding = new LisaRoman();
|
||||
/// <summary>
|
||||
/// Static instance for the ATASCII encoding
|
||||
/// </summary>
|
||||
public static System.Text.Encoding AtariEncoding = new ATASCII();
|
||||
/// <summary>
|
||||
/// Static instance for the Atari ST encoding
|
||||
/// </summary>
|
||||
public static System.Text.Encoding AtariSTEncoding = new AtariST();
|
||||
/// <summary>
|
||||
/// Static instance for the PETSCII encoding
|
||||
/// </summary>
|
||||
public static System.Text.Encoding PETEncoding = new PETSCII();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -26,6 +26,9 @@
|
||||
using System;
|
||||
namespace Claunia.Encoding
|
||||
{
|
||||
/// <summary>
|
||||
/// Class containing pangrams for several languages that can be used to test encoding.
|
||||
/// </summary>
|
||||
public static class Pangrams
|
||||
{
|
||||
/// <summary>A pangram that contains all (or most) Arabic characters.</summary>
|
||||
|
||||
Reference in New Issue
Block a user