Click here to Skip to main content
15,860,844 members
Home / Discussions / C#
   

C#

 
GeneralRe: C# XmlDocument Encoding Pin
Samb198516-Jun-09 23:47
Samb198516-Jun-09 23:47 
GeneralRe: C# XmlDocument Encoding Pin
SeMartens16-Jun-09 23:53
SeMartens16-Jun-09 23:53 
GeneralRe: C# XmlDocument Encoding [modified] Pin
Samb198517-Jun-09 0:00
Samb198517-Jun-09 0:00 
AnswerRe: C# XmlDocument Encoding Pin
PIEBALDconsult17-Jun-09 9:03
mvePIEBALDconsult17-Jun-09 9:03 
GeneralRe: C# XmlDocument Encoding Pin
Samb198517-Jun-09 9:19
Samb198517-Jun-09 9:19 
GeneralRe: C# XmlDocument Encoding Pin
PIEBALDconsult17-Jun-09 12:00
mvePIEBALDconsult17-Jun-09 12:00 
QuestionAbstract Class, constructors Pin
dwadasi16-Jun-09 21:41
dwadasi16-Jun-09 21:41 
AnswerRe: Abstract Class, constructors [modified] Pin
DaveyM6916-Jun-09 21:58
professionalDaveyM6916-Jun-09 21:58 
An abstract class can have implementations though.
public abstract class BaseClass
{
    protected BaseClass()
    { }

    protected BaseClass(int id)
    {
        ID = id;
    }

    public int ID
    {
        get;
        private set;
    }

    public string Text
    {
        get;
        internal set;
    }
}

public class DerivedClass : BaseClass
{
    public DerivedClass() : base() { }

    public DerivedClass(int id) : base(id) { }

    public DerivedClass(int id, string text) : base(id)
    {
        Text = text;
    }
}


[Edit] Forgot to mark the abstract class's constructors as protected[/Edit]

Dave
BTW, in software, hope and pray is not a viable strategy. (Luc Pattyn)
Visual Basic is not used by normal people so we're not covering it here. (Uncyclopedia)
Why are you using VB6? Do you hate yourself? (Christian Graus)

modified on Wednesday, June 17, 2009 4:57 AM

AnswerRe: Abstract Class, constructors Pin
PIEBALDconsult17-Jun-09 8:59
mvePIEBALDconsult17-Jun-09 8:59 
Questionproblem with registering flormclosing event with button click event Pin
prasadbuddhika16-Jun-09 21:31
prasadbuddhika16-Jun-09 21:31 
AnswerRe: problem with registering flormclosing event with button click event Pin
musefan16-Jun-09 21:59
musefan16-Jun-09 21:59 
AnswerRe: problem with registering flormclosing event with button click event Pin
DaveyM6916-Jun-09 22:04
professionalDaveyM6916-Jun-09 22:04 
GeneralRe: problem with registering flormclosing event with button click event Pin
prasadbuddhika16-Jun-09 22:29
prasadbuddhika16-Jun-09 22:29 
GeneralRe: problem with registering flormclosing event with button click event Pin
prasadbuddhika16-Jun-09 23:58
prasadbuddhika16-Jun-09 23:58 
AnswerRe: problem with registering flormclosing event with button click event [modified] Pin
Alan N17-Jun-09 0:10
Alan N17-Jun-09 0:10 
GeneralRe: problem with registering flormclosing event with button click event Pin
DaveyM6917-Jun-09 0:10
professionalDaveyM6917-Jun-09 0:10 
GeneralRe: problem with registering flormclosing event with button click event Pin
OriginalGriff17-Jun-09 0:12
mveOriginalGriff17-Jun-09 0:12 
QuestionHelp me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
radhikasharma16-Jun-09 21:08
radhikasharma16-Jun-09 21:08 
AnswerRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
Thomas Krojer16-Jun-09 21:32
Thomas Krojer16-Jun-09 21:32 
GeneralRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
Mirko198016-Jun-09 21:43
Mirko198016-Jun-09 21:43 
GeneralRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
radhikasharma16-Jun-09 22:08
radhikasharma16-Jun-09 22:08 
GeneralRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
radhikasharma16-Jun-09 22:06
radhikasharma16-Jun-09 22:06 
GeneralRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
Thomas Krojer16-Jun-09 22:13
Thomas Krojer16-Jun-09 22:13 
GeneralRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
radhikasharma17-Jun-09 0:21
radhikasharma17-Jun-09 0:21 
GeneralRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
DaveyM6917-Jun-09 0:37
professionalDaveyM6917-Jun-09 0:37 

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.