Protected members means they can accessible from child classes,
But the main features of static class are
1.only contain static members.
2.Cann't be instantiate.
3.are sealed.
Loading
Protected members mean it would be accesible fom child/inherited class. But static class cannot be inherited.
So what is the use of Protected mmbers in Static Class. That is why Static class can not contain Protected members.