Use correct inheritance keywords.

This commit is contained in:
2019-04-23 23:10:31 +01:00
parent 663bb8c4c4
commit a295d6a9de
26 changed files with 38 additions and 38 deletions

View File

@@ -456,7 +456,7 @@ namespace Claunia.Encoding
/// </summary>
/// <returns>A string that contains the results of decoding the specified sequence of bytes.</returns>
/// <param name="bytes">The byte array containing the sequence of bytes to decode.</param>
public string GetString(byte[] bytes)
public override string GetString(byte[] bytes)
{
return GetString(bytes, 0, bytes.Length);
}