+ 1
Difference between sealed class and partial class
2 odpowiedzi
+ 4
These are to totally different things.
A sealed class is is a class that does not allowed to be inherited from.
You can make instances of this class but you cannot use it a a base class.
https://www.c-sharpcorner.com/article/sealed-class-in-C-Sharp/
A partial class is a class that can be divided across multiple files.
You can make instances from this class and also inherited form this class.
https://www.geeksforgeeks.org/partial-classes-in-c-sharp/
+ 3
Anchal Balodi Kindly use the SEARCH bar feature in Sololearn before posting Questions
https://www.sololearn.com/Discuss/125556/?ref=apphttps://www.sololearn.com/Discuss/958445/?ref=app