+ 1
What is difference between static function and sealed funtion in c#
2 ответов
+ 1
static are methods and members that belong to the class and not to a instance of the class.
a sealed class can have methods and members that belong to a instance of the class.
sealed means you can create instances of the class.
but you may not derive another class of this class.
https://www.dotnetperls.com/sealed
0
nice elaboration.