Explain About namespaces
Explain static class members.
Which class does the remote object has to inherit?
What is the difference between a constant and a static readonly field?
Write a short note on interface?
How many parameters can a method have c#?
Is learning c# hard?
Where do you add an event handler ?
What is the keyword used to prevent a class from being inherited by another class?
How assembly versioning in .NET prevent DLL Hell problem?
What is master page in asp net c#?
Explain the OOPS concept in C#?
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.