C# Interview Questions | What is scope of a private member variable of a C# class?

preview_player
Показать описание
Private access specifier allows a class to hide its member variables and member functions from other functions and objects. Only functions of the same class can access its private members. Even an instance of a class cannot access its private members.
Рекомендации по теме