Click here to Skip to main content
15,887,175 members
Home / Discussions / C#
   

C#

 
QuestionUsing virtual mode list view to monitor events queue? Pin
Chesnokov Yuriy1-Feb-11 3:47
professionalChesnokov Yuriy1-Feb-11 3:47 
QuestionHow to add both x86 and x64 class library to the references in the project Pin
Chesnokov Yuriy1-Feb-11 3:06
professionalChesnokov Yuriy1-Feb-11 3:06 
AnswerRe: How to add both x86 and x64 class library to the references in the project Pin
Pete O'Hanlon1-Feb-11 3:57
mvePete O'Hanlon1-Feb-11 3:57 
GeneralRe: How to add both x86 and x64 class library to the references in the project Pin
RobCroll1-Feb-11 12:34
RobCroll1-Feb-11 12:34 
GeneralRe: How to add both x86 and x64 class library to the references in the project Pin
Chesnokov Yuriy1-Feb-11 18:53
professionalChesnokov Yuriy1-Feb-11 18:53 
AnswerRe: How to add both x86 and x64 class library to the references in the project Pin
jschell1-Feb-11 10:40
jschell1-Feb-11 10:40 
QuestionAbstract classes and delgates Pin
igalep1321-Feb-11 2:22
igalep1321-Feb-11 2:22 
AnswerRe: Abstract classes and delgates PinPopular
DaveyM691-Feb-11 4:00
professionalDaveyM691-Feb-11 4:00 
The delegate has no implementation so it is already an abstraction. The handler methods can be abstract though...
C#
public abstract class AbstractBase
{
    public event EventHandler DoXxx;

    protected abstract void OnDoXxx(EventArgs e);
}
public class Concrete1 : AbstractBase
{
    protected override void OnDoXxx(EventArgs e)
    {
        //
    }
}
public class Concrete2 : AbstractBase
{
    protected override void OnDoXxx(EventArgs e)
    {
        //
    }
}

Dave

Binging is like googling, it just feels dirtier.
Please take your VB.NET out of our nice case sensitive forum.
Astonish us. Be exceptional. (Pete O'Hanlon)

BTW, in software, hope and pray is not a viable strategy. (Luc Pattyn)



GeneralRe: Abstract classes and delgates Pin
igalep1325-Feb-11 9:03
igalep1325-Feb-11 9:03 
GeneralRe: Abstract classes and delgates Pin
DaveyM695-Feb-11 10:57
professionalDaveyM695-Feb-11 10:57 
GeneralRe: Abstract classes and delgates Pin
igalep1325-Feb-11 12:42
igalep1325-Feb-11 12:42 
QuestionFile Convert .DOCX to .png Pin
raushan_91-Feb-11 1:32
raushan_91-Feb-11 1:32 
AnswerRe: File Convert .DOCX to .png Pin
JF20151-Feb-11 2:18
JF20151-Feb-11 2:18 
AnswerRe: File Convert .DOCX to .png Pin
Eddy Vluggen1-Feb-11 6:57
professionalEddy Vluggen1-Feb-11 6:57 
GeneralRe: File Convert .DOCX to .png Pin
raushan_91-Feb-11 8:02
raushan_91-Feb-11 8:02 
GeneralRe: File Convert .DOCX to .png Pin
Eddy Vluggen1-Feb-11 20:27
professionalEddy Vluggen1-Feb-11 20:27 
Questioncheck if value is null Pin
arkiboys1-Feb-11 1:01
arkiboys1-Feb-11 1:01 
AnswerRe: check if value is null Pin
Bernhard Hiller1-Feb-11 1:09
Bernhard Hiller1-Feb-11 1:09 
GeneralRe: check if value is null Pin
arkiboys1-Feb-11 1:12
arkiboys1-Feb-11 1:12 
GeneralRe: check if value is null Pin
Dave Kreskowiak1-Feb-11 1:53
mveDave Kreskowiak1-Feb-11 1:53 
AnswerRe: check if value is null Pin
Richard MacCutchan1-Feb-11 1:10
mveRichard MacCutchan1-Feb-11 1:10 
GeneralRe: check if value is null Pin
arkiboys1-Feb-11 1:28
arkiboys1-Feb-11 1:28 
GeneralRe: check if value is null Pin
Pete O'Hanlon1-Feb-11 1:43
mvePete O'Hanlon1-Feb-11 1:43 
GeneralRe: check if value is null Pin
arkiboys1-Feb-11 1:50
arkiboys1-Feb-11 1:50 
GeneralRe: check if value is null Pin
Richard MacCutchan1-Feb-11 3:19
mveRichard MacCutchan1-Feb-11 3:19 

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.