Click here to Skip to main content
15,902,634 members
Home / Discussions / C#
   

C#

 
QuestionHow to send Date as a DateTime Object?. Pin
pubududilena21-May-07 2:51
pubududilena21-May-07 2:51 
AnswerRe: How to send Date as a DateTime Object?. Pin
Manoj Kumar Rai21-May-07 3:00
professionalManoj Kumar Rai21-May-07 3:00 
GeneralRe: How to send Date as a DateTime Object?. Pin
pubududilena21-May-07 3:14
pubududilena21-May-07 3:14 
GeneralRe: How to send Date as a DateTime Object?. Pin
Manoj Kumar Rai21-May-07 3:26
professionalManoj Kumar Rai21-May-07 3:26 
GeneralRe: How to send Date as a DateTime Object?. Pin
pubududilena21-May-07 3:39
pubududilena21-May-07 3:39 
AnswerRe: How to send Date as a DateTime Object?. Pin
DoomedOne21-May-07 11:34
DoomedOne21-May-07 11:34 
QuestionInterface question Pin
groundzero11121-May-07 1:58
groundzero11121-May-07 1:58 
AnswerRe: Interface question Pin
Pete O'Hanlon21-May-07 2:12
mvePete O'Hanlon21-May-07 2:12 
An interface guarantees that a class will implement some methods. Suppose that you have an interface called IPlugin that contains one method called DoSomethingFunky. The interface is to be used as the basis for all plugins for your application. Now, in your code you don't know what the external classes are going to be and you certainly can't compile against them so you need some method for creating these unknown classes. Well, you can do this by using
IPlugin plugin = null;
// Do something to create and instantiate the plugin... (using reflection)
plugin.DoSomethingFunky();


Deja View - the feeling that you've seen this post before.

AnswerRe: Interface question [modified] Pin
Dave Herren21-May-07 3:21
Dave Herren21-May-07 3:21 
GeneralRe: Interface question Pin
groundzero11121-May-07 6:43
groundzero11121-May-07 6:43 
QuestionDataGrid Cell Merging Pin
rujuc#21-May-07 1:56
rujuc#21-May-07 1:56 
QuestionDigital Persona Pin
| Muhammad Waqas Butt |21-May-07 1:19
professional| Muhammad Waqas Butt |21-May-07 1:19 
AnswerRe: Digital Persona Pin
Dave Kreskowiak21-May-07 6:35
mveDave Kreskowiak21-May-07 6:35 
QuestionDataSet Query Pin
Blumen21-May-07 0:38
Blumen21-May-07 0:38 
AnswerRe: DataSet Query Pin
Colin Angus Mackay21-May-07 0:59
Colin Angus Mackay21-May-07 0:59 
GeneralRe: DataSet Query Pin
Blumen21-May-07 3:14
Blumen21-May-07 3:14 
AnswerRe: DataSet Query Pin
marky77721-May-07 2:36
marky77721-May-07 2:36 
GeneralRe: DataSet Query Pin
Blumen21-May-07 3:15
Blumen21-May-07 3:15 
GeneralRe: DataSet Query Pin
marky77721-May-07 3:22
marky77721-May-07 3:22 
GeneralRe: DataSet Query Pin
Blumen21-May-07 23:42
Blumen21-May-07 23:42 
QuestionFile Extraction Pin
orisugbeye21-May-07 0:36
orisugbeye21-May-07 0:36 
AnswerRe: File Extraction Pin
Giorgi Dalakishvili21-May-07 0:39
mentorGiorgi Dalakishvili21-May-07 0:39 
GeneralRe: File Extraction Pin
orisugbeye21-May-07 1:18
orisugbeye21-May-07 1:18 
GeneralRe: File Extraction Pin
Christian Graus21-May-07 1:35
protectorChristian Graus21-May-07 1:35 
GeneralRe: File Extraction Pin
orisugbeye21-May-07 1:53
orisugbeye21-May-07 1:53 

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.