What is scope of a Protected Internal member variable of a C# class? Technology Community › Category: C# › What is scope of a Protected Internal member variable of a C# class? 0 Vote Up Vote Down VietMX Staff asked 4 years ago The protected internal access specifier allows a class to hide its member variables and member functions from other class objects and functions, except a child class within the same application. This is also used while implementing inheritance.