Click here to Skip to main content
15,888,610 members
Home / Discussions / C#
   

C#

 
GeneralRe: HELP! Windows Services Pin
Luc Pattyn8-Jul-10 10:12
sitebuilderLuc Pattyn8-Jul-10 10:12 
GeneralRe: HELP! Windows Services Pin
PIEBALDconsult8-Jul-10 13:41
mvePIEBALDconsult8-Jul-10 13:41 
GeneralRe: HELP! Windows Services Pin
Luc Pattyn8-Jul-10 14:17
sitebuilderLuc Pattyn8-Jul-10 14:17 
GeneralRe: HELP! Windows Services Pin
Dave Kreskowiak8-Jul-10 14:52
mveDave Kreskowiak8-Jul-10 14:52 
GeneralRe: HELP! Windows Services Pin
Luc Pattyn8-Jul-10 15:01
sitebuilderLuc Pattyn8-Jul-10 15:01 
GeneralRe: HELP! Windows Services Pin
Roger Wright8-Jul-10 16:43
professionalRoger Wright8-Jul-10 16:43 
GeneralRe: HELP! Windows Services Pin
Luc Pattyn8-Jul-10 23:09
sitebuilderLuc Pattyn8-Jul-10 23:09 
Questionpolymorphism Pin
netJP12L8-Jul-10 5:27
netJP12L8-Jul-10 5:27 
Defination:
"Through inheritance, a class can be used as more than one type; it can be used as its own type, any base types, or any interface type if it implements interfaces. This is called polymorphism".

But does it mean changing a behaviour of a method in a drieved class also means polymorphism. e.g

public class BaseClass
{
public virtual void DoWork() { }
public virtual int WorkProperty
{
get { return 0; }
}
}
public class DerivedClass : BaseClass
{
public override void DoWork() { }
public override int WorkProperty
{
get { return 0; }
}
}
AnswerRe: polymorphism Pin
Abhinav S8-Jul-10 5:37
Abhinav S8-Jul-10 5:37 
GeneralRe: polymorphism Pin
netJP12L8-Jul-10 5:49
netJP12L8-Jul-10 5:49 
GeneralRe: polymorphism Pin
Ennis Ray Lynch, Jr.8-Jul-10 6:02
Ennis Ray Lynch, Jr.8-Jul-10 6:02 
AnswerRe: polymorphism Pin
Keith Barrow8-Jul-10 6:30
professionalKeith Barrow8-Jul-10 6:30 
GeneralRe: polymorphism Pin
netJP12L8-Jul-10 6:36
netJP12L8-Jul-10 6:36 
GeneralRe: polymorphism Pin
Keith Barrow8-Jul-10 7:44
professionalKeith Barrow8-Jul-10 7:44 
QuestionDetecting Button Clicks In Outlook Pin
euroazn8-Jul-10 4:28
euroazn8-Jul-10 4:28 
QuestionGet Parent form name in custom control Pin
kartheesh8-Jul-10 2:36
kartheesh8-Jul-10 2:36 
AnswerRe: Get Parent form name in custom control Pin
Ennis Ray Lynch, Jr.8-Jul-10 4:26
Ennis Ray Lynch, Jr.8-Jul-10 4:26 
AnswerRe: Get Parent form name in custom control [modified] Pin
kartheesh8-Jul-10 22:31
kartheesh8-Jul-10 22:31 
AnswerRe: Get Parent form name in custom control Pin
William Winner8-Jul-10 8:04
William Winner8-Jul-10 8:04 
AnswerRe: Get Parent form name in custom control Pin
Roger Wright8-Jul-10 16:56
professionalRoger Wright8-Jul-10 16:56 
QuestionProcess in C# (Open exe) Pin
ShafiqA8-Jul-10 0:36
ShafiqA8-Jul-10 0:36 
AnswerRe: Process in C# (Open exe) Pin
monstale8-Jul-10 0:53
monstale8-Jul-10 0:53 
AnswerRe: Process in C# (Open exe) Pin
Peace ON8-Jul-10 0:59
Peace ON8-Jul-10 0:59 
GeneralRe: Process in C# (Open exe) Pin
ShafiqA8-Jul-10 1:13
ShafiqA8-Jul-10 1:13 
GeneralRe: Process in C# (Open exe) Pin
Peace ON8-Jul-10 1:38
Peace ON8-Jul-10 1:38 

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.