what is the difference between interface and multiple interface?
What are anonymous methods ? why these methods are used and in what condition these methods are useful ?
Is unboxing an implicit conversion?
i need to insert data into sql server table emp through textboxes txtname and txtsalary using c# code. Please help
When was .net linq added?
What is uint 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>(); } } }
Can partial class be inherited?
What tool we have to use to install assembli in gac folder.
What is the difference between values and reference types?
Explain the process of abstraction with an example?
Can you allow class to be inherited, but prevent the method from being over-ridden?
What is the difference between icomparer and icomparable in c#?