InterviewSolution
Saved Bookmarks
| 1. |
What is the C# equivalent of C++ friend keyword? |
|
Answer» The equivalent of C++ friend KEYWORD in C# is a nested class accessing the OUTER class PRIVATE members. That would MEAN the INNER class can access the outer class private members: |
|