Click here to Skip to main content
15,910,603 members
Home / Discussions / C#
   

C#

 
Questionto retrieve the word document from sqlserver Pin
gopal_nivas8419-Jan-09 0:31
gopal_nivas8419-Jan-09 0:31 
AnswerRe: to retrieve the word document from sqlserver Pin
Giorgi Dalakishvili19-Jan-09 0:41
mentorGiorgi Dalakishvili19-Jan-09 0:41 
GeneralRe: to retrieve the word document from sqlserver Pin
gopal_nivas8419-Jan-09 0:48
gopal_nivas8419-Jan-09 0:48 
GeneralRe: to retrieve the word document from sqlserver Pin
Giorgi Dalakishvili19-Jan-09 0:50
mentorGiorgi Dalakishvili19-Jan-09 0:50 
QuestionCould you please tell me the advantage of using the interface to code? Pin
mctramp16819-Jan-09 0:16
mctramp16819-Jan-09 0:16 
AnswerRe: Could you please tell me the advantage of using the interface to code? Pin
SeMartens19-Jan-09 0:23
SeMartens19-Jan-09 0:23 
AnswerRe: Could you please tell me the advantage of using the interface to code? Pin
DaveyM6919-Jan-09 1:14
professionalDaveyM6919-Jan-09 1:14 
AnswerRe: Could you please tell me the advantage of using the interface to code? Pin
Alan Balkany19-Jan-09 3:38
Alan Balkany19-Jan-09 3:38 
Another benefit of interfaces is that they identify/factor out common behavior among very different classes.

This lets you pass objects of two very different classes that implement interface X to the same parameter in a method that takes an interface X parameter. This lets you reuse that method's code for different classes that implement this interface.

This mechanism also helps make your code more modular. In the above example, the method doesn't know any details about the objects it receives as a parameter, except that they implement interface X. So any non-interface-X changes to the classes passed as a parameter are guaranteed to not impact the method.
AnswerRe: Could you please tell me the advantage of using the interface to code? Pin
Guffa19-Jan-09 3:45
Guffa19-Jan-09 3:45 
AnswerRe: Could you please tell me the advantage of using the interface to code? Pin
CodingYoshi19-Jan-09 4:09
CodingYoshi19-Jan-09 4:09 
QuestionArrayList search Pin
kanchoette18-Jan-09 23:55
kanchoette18-Jan-09 23:55 
AnswerRe: ArrayList search Pin
SeMartens18-Jan-09 23:59
SeMartens18-Jan-09 23:59 
GeneralRe: ArrayList search Pin
CodingYoshi19-Jan-09 4:20
CodingYoshi19-Jan-09 4:20 
Questionmdi forms with parent and child interaction Pin
bfis10813718-Jan-09 23:38
bfis10813718-Jan-09 23:38 
AnswerRe: mdi forms with parent and child interaction Pin
harold aptroot18-Jan-09 23:44
harold aptroot18-Jan-09 23:44 
GeneralRe: mdi forms with parent and child interaction Pin
DaveyM6919-Jan-09 1:16
professionalDaveyM6919-Jan-09 1:16 
GeneralRe: mdi forms with parent and child interaction Pin
CodingYoshi19-Jan-09 4:16
CodingYoshi19-Jan-09 4:16 
Questionstrange Http timeout issue Pin
George_George18-Jan-09 23:11
George_George18-Jan-09 23:11 
QuestionHow to translate the property item name of the control in the properties window? Pin
mctramp16818-Jan-09 21:02
mctramp16818-Jan-09 21:02 
AnswerRe: How to translate the property item name of the control in the properties window? Pin
Eddy Vluggen18-Jan-09 22:02
professionalEddy Vluggen18-Jan-09 22:02 
GeneralRe: How to translate the property item name of the control in the properties window? Pin
mctramp16819-Jan-09 0:13
mctramp16819-Jan-09 0:13 
AnswerRe: How to translate the property item name of the control in the properties window? Pin
Eddy Vluggen19-Jan-09 1:28
professionalEddy Vluggen19-Jan-09 1:28 
GeneralRe: How to translate the property item name of the control in the properties window? Pin
mctramp16819-Jan-09 15:22
mctramp16819-Jan-09 15:22 
Questionhow to detect windowstate outside form? Pin
ping_jacob18-Jan-09 20:46
ping_jacob18-Jan-09 20:46 
AnswerRe: how to detect windowstate outside form? [modified] Pin
Luc Pattyn18-Jan-09 21:15
sitebuilderLuc Pattyn18-Jan-09 21:15 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.