Merge pull request #69 from Nicekloe/patch-1

Update improvements.md
This commit is contained in:
Mark J. Price 2023-05-09 11:44:16 +01:00 committed by GitHub
commit d8275df400
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -272,7 +272,7 @@ class Episilon : Delta { }
// A class with at least one abstract member must be decorated with the abstract keyword to prevent instantiation.
abstract class Zeta { void M3() { } abstract void M4(); }
// A class inheriting the M3 method but must provide an implementarion for M4.
// A class inheriting the M3 method but must provide an implementation for M4.
class Eta : Zeta { void M4() { } }
// In C# 8 and later, interfaces can have default implementatations as well as members that must be implemented.