diff --git a/Claunia.Encoding/ATASCII.cs b/Claunia.Encoding/ATASCII.cs index 947d67b..22f6cae 100644 --- a/Claunia.Encoding/ATASCII.cs +++ b/Claunia.Encoding/ATASCII.cs @@ -455,7 +455,7 @@ namespace Claunia.Encoding /// /// A string that contains the results of decoding the specified sequence of bytes. /// The byte array containing the sequence of bytes to decode. - public string GetString(byte[] bytes) + public override string GetString(byte[] bytes) { return GetString(bytes, 0, bytes.Length); } diff --git a/Claunia.Encoding/Apple2.cs b/Claunia.Encoding/Apple2.cs index dfbe8ca..7f4219c 100644 --- a/Claunia.Encoding/Apple2.cs +++ b/Claunia.Encoding/Apple2.cs @@ -455,7 +455,7 @@ namespace Claunia.Encoding /// /// A string that contains the results of decoding the specified sequence of bytes. /// The byte array containing the sequence of bytes to decode. - public string GetString(byte[] bytes) + public override string GetString(byte[] bytes) { return GetString(bytes, 0, bytes.Length); } diff --git a/Claunia.Encoding/Apple2c.cs b/Claunia.Encoding/Apple2c.cs index 5c738cf..2dcdd11 100644 --- a/Claunia.Encoding/Apple2c.cs +++ b/Claunia.Encoding/Apple2c.cs @@ -456,7 +456,7 @@ namespace Claunia.Encoding /// /// A string that contains the results of decoding the specified sequence of bytes. /// The byte array containing the sequence of bytes to decode. - public string GetString(byte[] bytes) + public override string GetString(byte[] bytes) { return GetString(bytes, 0, bytes.Length); } diff --git a/Claunia.Encoding/Apple2e.cs b/Claunia.Encoding/Apple2e.cs index 3ffde7a..b6edec8 100644 --- a/Claunia.Encoding/Apple2e.cs +++ b/Claunia.Encoding/Apple2e.cs @@ -455,7 +455,7 @@ namespace Claunia.Encoding /// /// A string that contains the results of decoding the specified sequence of bytes. /// The byte array containing the sequence of bytes to decode. - public string GetString(byte[] bytes) + public override string GetString(byte[] bytes) { return GetString(bytes, 0, bytes.Length); } diff --git a/Claunia.Encoding/Apple2gs.cs b/Claunia.Encoding/Apple2gs.cs index a1774e8..5882f64 100644 --- a/Claunia.Encoding/Apple2gs.cs +++ b/Claunia.Encoding/Apple2gs.cs @@ -456,7 +456,7 @@ namespace Claunia.Encoding /// /// A string that contains the results of decoding the specified sequence of bytes. /// The byte array containing the sequence of bytes to decode. - public string GetString(byte[] bytes) + public override string GetString(byte[] bytes) { return GetString(bytes, 0, bytes.Length); } diff --git a/Claunia.Encoding/AtariST.cs b/Claunia.Encoding/AtariST.cs index 88f0132..fdc8e31 100644 --- a/Claunia.Encoding/AtariST.cs +++ b/Claunia.Encoding/AtariST.cs @@ -456,7 +456,7 @@ namespace Claunia.Encoding /// /// A string that contains the results of decoding the specified sequence of bytes. /// The byte array containing the sequence of bytes to decode. - public string GetString(byte[] bytes) + public override string GetString(byte[] bytes) { return GetString(bytes, 0, bytes.Length); } diff --git a/Claunia.Encoding/Encoding.cs b/Claunia.Encoding/Encoding.cs index 62dcc50..0d19baa 100644 --- a/Claunia.Encoding/Encoding.cs +++ b/Claunia.Encoding/Encoding.cs @@ -68,48 +68,48 @@ namespace Claunia.Encoding /// /// Gets a value indicating whether the current encoding can be used by browser clients for displaying content. /// - public abstract bool IsBrowserDisplay { get; } + public abstract override bool IsBrowserDisplay { get; } /// /// Gets a value indicating whether the current encoding can be used by browser clients for saving content. /// - public abstract bool IsBrowserSave { get; } + public abstract override bool IsBrowserSave { get; } /// /// Gets a value indicating whether the current encoding can be used by mail and news clients for displaying content. /// - public abstract bool IsMailNewsDisplay { get; } + public abstract override bool IsMailNewsDisplay { get; } /// /// Gets a value indicating whether the current encoding can be used by mail and news clients for saving content. /// - public abstract bool IsMailNewsSave { get; } + public abstract override bool IsMailNewsSave { get; } /// /// Gets a value indicating whether the current encoding is read-only. /// /// The is single byte. - public abstract bool IsReadOnly { get; } + public new abstract bool IsReadOnly { get; } /// /// Gets a value indicating whether the current encoding uses single-byte code points. /// - public abstract bool IsSingleByte { get; } + public abstract override bool IsSingleByte { get; } /// /// Gets the code page identifier of the current Encoding. /// - public abstract int CodePage { get; } + public abstract override int CodePage { get; } /// /// Gets a name for the current encoding that can be used with mail agent body tags /// - public abstract string BodyName { get; } + public abstract override string BodyName { get; } /// /// Gets a name for the current encoding that can be used with mail agent header tags /// - public abstract string HeaderName { get; } + public abstract override string HeaderName { get; } /// /// Ggets the name registered with the Internet Assigned Numbers Authority (IANA) for the current encoding. @@ -119,18 +119,18 @@ namespace Claunia.Encoding /// /// Gets the human-readable description of the current encoding. /// - public abstract string EncodingName { get; } + public abstract override string EncodingName { get; } /// /// Gets the Windows operating system code page that most closely corresponds to the current encoding. /// - public abstract int WindowsCodePage { get; } + public abstract override int WindowsCodePage { get; } /// /// Returns an array that contains all encodings. /// /// An array that contains all encodings. - public static IEnumerable GetEncodings() + public new static IEnumerable GetEncodings() { return (from type in Assembly.GetExecutingAssembly().GetTypes() where type.IsSubclassOf(typeof(Encoding)) @@ -147,7 +147,7 @@ namespace Claunia.Encoding /// The code page name of the preferred encoding. Any value returned by the WebName property is valid. /// Possible values are listed in the Name column of the table that appears in the Encoding class topic. /// - public static System.Text.Encoding GetEncoding(string name) + public new static System.Text.Encoding GetEncoding(string name) { foreach(Type type in Assembly.GetExecutingAssembly().GetTypes()) if(type.IsSubclassOf(typeof(Encoding))) diff --git a/Claunia.Encoding/Gem.cs b/Claunia.Encoding/Gem.cs index 4c30dcb..1fcbe3a 100644 --- a/Claunia.Encoding/Gem.cs +++ b/Claunia.Encoding/Gem.cs @@ -456,7 +456,7 @@ namespace Claunia.Encoding /// /// A string that contains the results of decoding the specified sequence of bytes. /// The byte array containing the sequence of bytes to decode. - public string GetString(byte[] bytes) + public override string GetString(byte[] bytes) { return GetString(bytes, 0, bytes.Length); } diff --git a/Claunia.Encoding/Geos.cs b/Claunia.Encoding/Geos.cs index eb86088..0a9ca76 100644 --- a/Claunia.Encoding/Geos.cs +++ b/Claunia.Encoding/Geos.cs @@ -457,7 +457,7 @@ namespace Claunia.Encoding /// /// A string that contains the results of decoding the specified sequence of bytes. /// The byte array containing the sequence of bytes to decode. - public string GetString(byte[] bytes) + public override string GetString(byte[] bytes) { return GetString(bytes, 0, bytes.Length); } diff --git a/Claunia.Encoding/LisaRoman.cs b/Claunia.Encoding/LisaRoman.cs index bca4b3f..08ffeec 100644 --- a/Claunia.Encoding/LisaRoman.cs +++ b/Claunia.Encoding/LisaRoman.cs @@ -456,7 +456,7 @@ namespace Claunia.Encoding /// /// A string that contains the results of decoding the specified sequence of bytes. /// The byte array containing the sequence of bytes to decode. - public string GetString(byte[] bytes) + public override string GetString(byte[] bytes) { return GetString(bytes, 0, bytes.Length); } diff --git a/Claunia.Encoding/MacArabic.cs b/Claunia.Encoding/MacArabic.cs index 11f155d..feb6daf 100644 --- a/Claunia.Encoding/MacArabic.cs +++ b/Claunia.Encoding/MacArabic.cs @@ -455,7 +455,7 @@ namespace Claunia.Encoding /// /// A string that contains the results of decoding the specified sequence of bytes. /// The byte array containing the sequence of bytes to decode. - public string GetString(byte[] bytes) + public override string GetString(byte[] bytes) { return GetString(bytes, 0, bytes.Length); } diff --git a/Claunia.Encoding/MacCentralEuropean.cs b/Claunia.Encoding/MacCentralEuropean.cs index 023ce82..d630120 100644 --- a/Claunia.Encoding/MacCentralEuropean.cs +++ b/Claunia.Encoding/MacCentralEuropean.cs @@ -455,7 +455,7 @@ namespace Claunia.Encoding /// /// A string that contains the results of decoding the specified sequence of bytes. /// The byte array containing the sequence of bytes to decode. - public string GetString(byte[] bytes) + public override string GetString(byte[] bytes) { return GetString(bytes, 0, bytes.Length); } diff --git a/Claunia.Encoding/MacCroatian.cs b/Claunia.Encoding/MacCroatian.cs index f6bf75f..517c412 100644 --- a/Claunia.Encoding/MacCroatian.cs +++ b/Claunia.Encoding/MacCroatian.cs @@ -455,7 +455,7 @@ namespace Claunia.Encoding /// /// A string that contains the results of decoding the specified sequence of bytes. /// The byte array containing the sequence of bytes to decode. - public string GetString(byte[] bytes) + public override string GetString(byte[] bytes) { return GetString(bytes, 0, bytes.Length); } diff --git a/Claunia.Encoding/MacCyrillic.cs b/Claunia.Encoding/MacCyrillic.cs index cb99f7c..29bb721 100644 --- a/Claunia.Encoding/MacCyrillic.cs +++ b/Claunia.Encoding/MacCyrillic.cs @@ -455,7 +455,7 @@ namespace Claunia.Encoding /// /// A string that contains the results of decoding the specified sequence of bytes. /// The byte array containing the sequence of bytes to decode. - public string GetString(byte[] bytes) + public override string GetString(byte[] bytes) { return GetString(bytes, 0, bytes.Length); } diff --git a/Claunia.Encoding/MacFarsi.cs b/Claunia.Encoding/MacFarsi.cs index 3610b3e..d9a5b61 100644 --- a/Claunia.Encoding/MacFarsi.cs +++ b/Claunia.Encoding/MacFarsi.cs @@ -455,7 +455,7 @@ namespace Claunia.Encoding /// /// A string that contains the results of decoding the specified sequence of bytes. /// The byte array containing the sequence of bytes to decode. - public string GetString(byte[] bytes) + public override string GetString(byte[] bytes) { return GetString(bytes, 0, bytes.Length); } diff --git a/Claunia.Encoding/MacGreek.cs b/Claunia.Encoding/MacGreek.cs index 1dd996e..29abe4b 100644 --- a/Claunia.Encoding/MacGreek.cs +++ b/Claunia.Encoding/MacGreek.cs @@ -455,7 +455,7 @@ namespace Claunia.Encoding /// /// A string that contains the results of decoding the specified sequence of bytes. /// The byte array containing the sequence of bytes to decode. - public string GetString(byte[] bytes) + public override string GetString(byte[] bytes) { return GetString(bytes, 0, bytes.Length); } diff --git a/Claunia.Encoding/MacHebrew.cs b/Claunia.Encoding/MacHebrew.cs index cfd3aca..db16e3e 100644 --- a/Claunia.Encoding/MacHebrew.cs +++ b/Claunia.Encoding/MacHebrew.cs @@ -458,7 +458,7 @@ namespace Claunia.Encoding /// /// A string that contains the results of decoding the specified sequence of bytes. /// The byte array containing the sequence of bytes to decode. - public string GetString(byte[] bytes) + public override string GetString(byte[] bytes) { return GetString(bytes, 0, bytes.Length); } diff --git a/Claunia.Encoding/MacRoman.cs b/Claunia.Encoding/MacRoman.cs index 0233b44..092d586 100644 --- a/Claunia.Encoding/MacRoman.cs +++ b/Claunia.Encoding/MacRoman.cs @@ -456,7 +456,7 @@ namespace Claunia.Encoding /// /// A string that contains the results of decoding the specified sequence of bytes. /// The byte array containing the sequence of bytes to decode. - public string GetString(byte[] bytes) + public override string GetString(byte[] bytes) { return GetString(bytes, 0, bytes.Length); } diff --git a/Claunia.Encoding/MacRomanian.cs b/Claunia.Encoding/MacRomanian.cs index 232b8fa..0071ef1 100644 --- a/Claunia.Encoding/MacRomanian.cs +++ b/Claunia.Encoding/MacRomanian.cs @@ -456,7 +456,7 @@ namespace Claunia.Encoding /// /// A string that contains the results of decoding the specified sequence of bytes. /// The byte array containing the sequence of bytes to decode. - public string GetString(byte[] bytes) + public override string GetString(byte[] bytes) { return GetString(bytes, 0, bytes.Length); } diff --git a/Claunia.Encoding/MacTurkish.cs b/Claunia.Encoding/MacTurkish.cs index 16a1b07..a6e1a03 100644 --- a/Claunia.Encoding/MacTurkish.cs +++ b/Claunia.Encoding/MacTurkish.cs @@ -455,7 +455,7 @@ namespace Claunia.Encoding /// /// A string that contains the results of decoding the specified sequence of bytes. /// The byte array containing the sequence of bytes to decode. - public string GetString(byte[] bytes) + public override string GetString(byte[] bytes) { return GetString(bytes, 0, bytes.Length); } diff --git a/Claunia.Encoding/MacUkrainian.cs b/Claunia.Encoding/MacUkrainian.cs index c729941..abc0170 100644 --- a/Claunia.Encoding/MacUkrainian.cs +++ b/Claunia.Encoding/MacUkrainian.cs @@ -455,7 +455,7 @@ namespace Claunia.Encoding /// /// A string that contains the results of decoding the specified sequence of bytes. /// The byte array containing the sequence of bytes to decode. - public string GetString(byte[] bytes) + public override string GetString(byte[] bytes) { return GetString(bytes, 0, bytes.Length); } diff --git a/Claunia.Encoding/PETSCII.cs b/Claunia.Encoding/PETSCII.cs index 51fe069..279d88d 100644 --- a/Claunia.Encoding/PETSCII.cs +++ b/Claunia.Encoding/PETSCII.cs @@ -456,7 +456,7 @@ namespace Claunia.Encoding /// /// A string that contains the results of decoding the specified sequence of bytes. /// The byte array containing the sequence of bytes to decode. - public string GetString(byte[] bytes) + public override string GetString(byte[] bytes) { return GetString(bytes, 0, bytes.Length); } diff --git a/Claunia.Encoding/Radix50.cs b/Claunia.Encoding/Radix50.cs index b173195..833afda 100644 --- a/Claunia.Encoding/Radix50.cs +++ b/Claunia.Encoding/Radix50.cs @@ -464,7 +464,7 @@ namespace Claunia.Encoding /// /// A string that contains the results of decoding the specified sequence of bytes. /// The byte array containing the sequence of bytes to decode. - public string GetString(byte[] bytes) + public override string GetString(byte[] bytes) { return GetString(bytes, 0, bytes.Length); } diff --git a/Claunia.Encoding/ZX80.cs b/Claunia.Encoding/ZX80.cs index 317bdf2..c9840f5 100644 --- a/Claunia.Encoding/ZX80.cs +++ b/Claunia.Encoding/ZX80.cs @@ -455,7 +455,7 @@ namespace Claunia.Encoding /// /// A string that contains the results of decoding the specified sequence of bytes. /// The byte array containing the sequence of bytes to decode. - public string GetString(byte[] bytes) + public override string GetString(byte[] bytes) { return GetString(bytes, 0, bytes.Length); } diff --git a/Claunia.Encoding/ZX81.cs b/Claunia.Encoding/ZX81.cs index 1fb3205..b81176d 100644 --- a/Claunia.Encoding/ZX81.cs +++ b/Claunia.Encoding/ZX81.cs @@ -455,7 +455,7 @@ namespace Claunia.Encoding /// /// A string that contains the results of decoding the specified sequence of bytes. /// The byte array containing the sequence of bytes to decode. - public string GetString(byte[] bytes) + public override string GetString(byte[] bytes) { return GetString(bytes, 0, bytes.Length); } diff --git a/Claunia.Encoding/ZXSpectrum.cs b/Claunia.Encoding/ZXSpectrum.cs index e72b560..e1c0ac2 100644 --- a/Claunia.Encoding/ZXSpectrum.cs +++ b/Claunia.Encoding/ZXSpectrum.cs @@ -455,7 +455,7 @@ namespace Claunia.Encoding /// /// A string that contains the results of decoding the specified sequence of bytes. /// The byte array containing the sequence of bytes to decode. - public string GetString(byte[] bytes) + public override string GetString(byte[] bytes) { return GetString(bytes, 0, bytes.Length); }