Why cannot you specify the accessibility modifier for methods inside the interface?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Sharp Interview Questions

What is difference between arraylist and list in c#?

0 Answers  


How can I make sure my c# classes will interoperate with other .net languages?

0 Answers  


What does int32 mean in c#?

0 Answers  


What is the partial class in C# What is the use of partial class in C#?

6 Answers   CTS,


Does google use c#?

0 Answers  


What is private readonly in c#?

0 Answers  


What is command object in c#?

0 Answers  


What does the keyword virtual mean in the method definition?

3 Answers   Ipog Software, Satyam, Visual Soft,


Can you inherit multiple classes in c#?

0 Answers  


What is difference between destructor and finalize?

0 Answers  


Difference between multi-level and multiple inheritance?

17 Answers   Microsoft,


In a C# class we have a SortedList member m_addinProjects we want to provide an iterator to allow the consumer of this class access to the items in the collection. Please provide an iterator method for the AnalyzeAddinsDLL class below and an example of how it would be used. namespace AnalyzeAddinsDLL { public class AllAddInProjects { private SortedList<string, AddInProject> m_addinProjects; public AllAddInProjects() { m_addinProjects = new SortedList<string, AddInProject>(); } } }

0 Answers   ABC, WinsIndia,


Categories