matthew25187
Results
2
comments of
matthew25187
Rather than having a special type of extensions class, why not modify the existing syntax for extension methods? For example, public static class DayOfWeekExtensions { // Methods public static bool...
How would a class being `sealed` affect the ability of extensions to add capabilities to it? Would the `sealed` keyword prohibit the definition of extensions on the class?