Why Static Class Can Not Contain Protected Members ?
Pratul Tripathi
Select an image from your device to upload
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.