Added missing documentaiton.

This commit is contained in:
2017-06-06 17:44:43 +01:00
parent 8631ba8cdc
commit 2fad0d25a5
2 changed files with 18 additions and 0 deletions

View File

@@ -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();
}
}

View File

@@ -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>