Click here to Skip to main content
15,881,757 members

Comments by Kishor Deshpande (Top 122 by date)

Kishor Deshpande 26-Sep-14 0:35am View    
My 5!
Kishor Deshpande 20-Aug-14 0:11am View    
Check the link on answer, the folder might be read only.
Kishor Deshpande 12-Aug-14 3:10am View    
How you are passing the values in in clause?

Would like to see the ADO.NET code involing this query...
Kishor Deshpande 9-Aug-14 2:24am View    
Where is the try catch?

How we are handling the network related/ other exceptions?
Kishor Deshpande 5-Aug-14 4:21am View    
You must have got a warning while compiling this program.
Warning like: Base class method a() hides derived class method, please use new keyword if hiding is intentional.
In such scenario,
1) If you want to have the method called of object Demo1() then use virtual keyword in base class and override keyword in derived class method.
2) If you want the functionality to be like this(Calling the method of reference used to attach the object i.e. Data in this case,) , then use new keyword in derived class method, then you do not get any compile time warnings. :)
Cheers!
Kishor