Home » 
        MCQs » 
        C# MCQs
    
        
    Which of the access specifier is used in interface in C#?
    
    
    
    88. Which of the access specifier is used in interface in C#?
    
        - private
- public
- protected
- 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.