The internal access modifier is used for ___

78. The internal access modifier is used for ___.

  1. Types and type members
  2. Defining a field that can be accessed in all classes
  3. Defining a field that can be accessed in inherited classes
  4. All of the above

Answer: A) Types and type members

Explanation:

In C#, the internal access modifier is used for types and type members. The internal types or members (those are defined by the using of internal keyword/ access modifier) are accessible only within files in the same assembly.

Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.