What is an iqueryable in c#?
List some Advantages of switch-case over if else?
What is difference between write and writeline?
What are anonymous functions in c#?
Where’s global assembly cache located on the system?
What is immutable in C#?
0 Answers SwanSoft Technologies,
What is an inheritance in c#?
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>(); } } }
What is the difference between paramaterized constructor and copy constructor?
Can fields inside a class be virtual?
Which is the best way for keeping the data in XML or SQL server..and why?
What is get set in c#?
Can abstract class be sealed in c#?