Click here to Skip to main content
16,017,235 members
Home / Discussions / C#
   

C#

 
QuestionWord Object C# Pin
mitsemaj30-Aug-05 14:58
mitsemaj30-Aug-05 14:58 
AnswerRe: Word Object C# Pin
mitsemaj30-Aug-05 21:43
mitsemaj30-Aug-05 21:43 
QuestionWord Object Pin
mitsemaj30-Aug-05 14:56
mitsemaj30-Aug-05 14:56 
QuestionClass question Pin
kenexcelon30-Aug-05 13:51
kenexcelon30-Aug-05 13:51 
AnswerRe: Class question Pin
DavidNohejl30-Aug-05 13:55
DavidNohejl30-Aug-05 13:55 
AnswerRe: Class question Pin
Christian Graus30-Aug-05 14:38
protectorChristian Graus30-Aug-05 14:38 
AnswerRe: Class question Pin
Mohamad Al Husseiny30-Aug-05 14:51
Mohamad Al Husseiny30-Aug-05 14:51 
AnswerRe: Class question Pin
mitsemaj30-Aug-05 15:07
mitsemaj30-Aug-05 15:07 
You can have many constructors as well but they must all differ in their parameters. This allows you to create your Contact class differently depending on what parameters you pass it, which means only one of the constructors will be called when you instantiate (create) your Contact object. I think this is what they mean by the term "polymorphism".

public Contact()
{
}
public Contact(int publicID)
{
}
public Contact(int publicID, int securityID)
{
}

notsnoj
GeneralRe: Class question Pin
Christian Graus30-Aug-05 15:16
protectorChristian Graus30-Aug-05 15:16 
GeneralRe: Class question Pin
mitsemaj30-Aug-05 17:28
mitsemaj30-Aug-05 17:28 
GeneralRe: Class question Pin
Christian Graus30-Aug-05 17:29
protectorChristian Graus30-Aug-05 17:29 
GeneralRe: Class question Pin
S. Senthil Kumar31-Aug-05 7:24
S. Senthil Kumar31-Aug-05 7:24 
AnswerRe: Class question Pin
kenexcelon30-Aug-05 15:19
kenexcelon30-Aug-05 15:19 
GeneralRe: Class question Pin
...---...30-Aug-05 15:36
...---...30-Aug-05 15:36 
QuestionCustom MenuItem Pin
Anonymous30-Aug-05 11:04
Anonymous30-Aug-05 11:04 
AnswerRe: Custom MenuItem Pin
if_mel_yes_else_no30-Aug-05 11:20
if_mel_yes_else_no30-Aug-05 11:20 
GeneralRe: Custom MenuItem Pin
Anonymous31-Aug-05 3:27
Anonymous31-Aug-05 3:27 
GeneralRe: Custom MenuItem Pin
if_mel_yes_else_no31-Aug-05 4:52
if_mel_yes_else_no31-Aug-05 4:52 
GeneralRe: Custom MenuItem Pin
Anonymous31-Aug-05 6:34
Anonymous31-Aug-05 6:34 
QuestionText cuts-off on some computers Pin
rudy.net30-Aug-05 10:32
rudy.net30-Aug-05 10:32 
AnswerRe: Text cuts-off on some computers Pin
if_mel_yes_else_no30-Aug-05 10:59
if_mel_yes_else_no30-Aug-05 10:59 
GeneralRe: Text cuts-off on some computers Pin
rudy.net30-Aug-05 14:29
rudy.net30-Aug-05 14:29 
AnswerRe: Text cuts-off on some computers Pin
Christian Graus30-Aug-05 14:41
protectorChristian Graus30-Aug-05 14:41 
GeneralRe: Text cuts-off on some computers Pin
rudy.net31-Aug-05 11:23
rudy.net31-Aug-05 11:23 
Questionrich textbox Pin
surfman1930-Aug-05 10:29
surfman1930-Aug-05 10:29 

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.