Which of the access specifier is used in interface in C#?

88. Which of the access specifier is used in interface in C#?

  1. private
  2. public
  3. protected
  4. All of the above

Answer: B) public

Explanation:

In C#, the interface members are always public, because the purpose of an interface is to enable other types to access a class or struct. No other access modifiers can be applied to interface members.

Comments and Discussions!

Load comments ↻






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