I have a dictionary am getting thee value from the dictionary dynamically, but some times its gives exception . Can someone kindly help on this
How can i make a check the value of test[typeof(T)].Key.ColumnName, before doing some action in dictionary.
If i use !string.isnullorEmpty , there itself its throwing error. code
int ID=123;
private Dictionary<Type, DataTableAttribute> test
parameters.AddInt32Parameter(test[typeof(T)].Key.ColumnName, ID);
-- thanks