What is virtual class in C#?
Distinguish between system.string and system.text.stringbuilder classes?
Is it true that all c# types derive from a common base class?
What is the role of the datareader class in ado.net connections?
What is a scope in c#?
what is meant inheritance. can you exaplain what kind inhertance ussed in your project
Define mutex in C#?
What is the difference between dispose() and finalize() methods in c#?
How do you inherit from a class in C#?
List the fundamental oop concepts?
Write a program to create a user control with name and surname as data members and login as method and also the code to call it. (Hint use event delegates) Practical Example of Passing an Events to delegates
I am using a data table and a datagridview. I am creating two columns in data grid view : 1)DataGridViewComboBoxColumn 2)DataGridViewTextBoxColumn. The items of datagridviewcombo are the list of all items in data table column 1. I want that the data type of the DataGridViewTextBoxColumn should be the same as the data type of the item selected from the datagridviewcombo at runtime. How can I do that.Also I want that each cell in column of datatable should be of variable data type. Pls help. thnx.
Can you change the value of a variable while debugging a C# application?