Static class vs sealed class



1. static class and it's methods  do not need any object to call them  . we can  use class name directly .
1.static class is also a sealed class .
but it is possible to create objects in sealed class .but not static .

2.  if we declare a class as sealed  it prevent my class from inherit from other class .


Comments