Which is better interface or abstract class in c#?
No Answer is Posted For this Question
Be the First to Post Answer
What is a shared assembly?
How do I create a multi language, multi file assembly?
Explain states of a thread in c#?
Tell me something about Exceptions. What is the common exception class?
Using system; class main { public static void Main() { int a = 1; for (int i = 0; i < 10; i++) { int j = a * 5; Console.WriteLine(a + "*5=" + j); a++; } Console.ReadLine(); } }
For a combobox and a listbox same datatable given as a datasource. Now problem is that whenever focus of listbox changes selected value of combobox also get change or vice versa. what to be done to avoid this. According to requirement we cannot make different datasouce.
Which is the best language for desktop application?
Why do we use hashtable in c#?
How many bytes is a char c#?
What is datatable and dataset in c#?
What is int64 in c#?
Can we have the method in drived class with the same name which is there in base class?