mirror of
https://github.com/claunia/Claunia.Encoding.git
synced 2025-12-16 19:24:43 +00:00
* Claunia.Encoding.Tests/LisaRoman.cs:
Corrected classification of a character. * Claunia.Encoding/Pangrams.cs: Added XML documentation. * Claunia.Encoding/ATASCII.cs: Corrected XML documentation.
This commit is contained in:
@@ -54,10 +54,10 @@ namespace Claunia.Encoding.Tests
|
||||
const string Portuguese = "áéíóúÉâêôãõÃÕçÇ";
|
||||
readonly byte[] PortugueseBytes = { 0x87, 0x8E, 0x92, 0x97, 0x9C, 0x83, 0x89, 0x90, 0x99, 0x8B, 0x9B, 0xCC, 0xCD, 0x8D, 0x82 };
|
||||
|
||||
const string Typographic = "†°•¶®©™´¨ªº«»…–—“”‘’";
|
||||
readonly byte[] TypographicBytes = { 0xA0, 0xA1, 0xA5, 0xA6, 0xA8, 0xA9, 0xAA, 0xAB, 0xAC, 0xBB, 0xBC, 0xC7, 0xC8, 0xC9, 0xD0, 0xD1, 0xD2, 0xD3, 0xD4, 0xD5};
|
||||
const string Currency = "¢£§¥";
|
||||
readonly byte[] CurrencyBytes = { 0xA2, 0xA3, 0xA4, 0xB4 };
|
||||
const string Typographic = "†°•¶®©™´¨ªº«»…–—“”‘’§";
|
||||
readonly byte[] TypographicBytes = { 0xA0, 0xA1, 0xA5, 0xA6, 0xA8, 0xA9, 0xAA, 0xAB, 0xAC, 0xBB, 0xBC, 0xC7, 0xC8, 0xC9, 0xD0, 0xD1, 0xD2, 0xD3, 0xD4, 0xD5, 0xA4};
|
||||
const string Currency = "¢£¥";
|
||||
readonly byte[] CurrencyBytes = { 0xA2, 0xA3, 0xB4 };
|
||||
const string Mathematics = "≠∞±≤≥µ∂∑∏π∫Ω¬√ƒ≈∆÷◊";
|
||||
readonly byte[] MathematicsBytes = { 0xAD, 0xB0, 0xB1, 0xB2, 0xB3, 0xB5, 0xB6, 0xB7, 0xB8, 0xB9, 0xBA, 0xBD, 0xC2, 0xC3, 0xC4, 0xC5, 0xC6, 0xD6, 0xD7 };
|
||||
|
||||
|
||||
Reference in New Issue
Block a user