Why cannot you specify the accessibility modifier for methods inside the interface?
What is difference between arraylist and list in c#?
How can I make sure my c# classes will interoperate with other .net languages?
What does int32 mean in c#?
What is the partial class in C# What is the use of partial class in C#?
Does google use c#?
What is private readonly in c#?
What is command object in c#?
What does the keyword virtual mean in the method definition?
3 Answers Ipog Software, Satyam, Visual Soft,
Can you inherit multiple classes in c#?
What is difference between destructor and finalize?
Difference between multi-level and multiple inheritance?
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>(); } } }