Click here to Skip to main content
15,891,204 members
Home / Discussions / C#
   

C#

 
GeneralRe: Convert Word doc to Byte Pin
NickHighIQ23-Nov-10 15:53
NickHighIQ23-Nov-10 15:53 
GeneralRe: Convert Word doc to Byte Pin
Pete O'Hanlon23-Nov-10 23:13
mvePete O'Hanlon23-Nov-10 23:13 
GeneralRe: Convert Word doc to Byte Pin
NickHighIQ24-Nov-10 1:10
NickHighIQ24-Nov-10 1:10 
GeneralRe: Convert Word doc to Byte Pin
Luc Pattyn24-Nov-10 3:42
sitebuilderLuc Pattyn24-Nov-10 3:42 
GeneralRe: Convert Word doc to Byte Pin
MWRivera24-Nov-10 4:59
MWRivera24-Nov-10 4:59 
GeneralRe: Convert Word doc to Byte Pin
MWRivera24-Nov-10 5:01
MWRivera24-Nov-10 5:01 
GeneralRe: Convert Word doc to Byte Pin
MWRivera30-Nov-10 5:05
MWRivera30-Nov-10 5:05 
QuestionGeneric Event In Interface Pin
Kevin Marois23-Nov-10 6:10
professionalKevin Marois23-Nov-10 6:10 
I have a generic event handler:

public delegate void EventHandler<TEventArgs>(object sender, TEventArgs e);
public class EventArgs_Generic<T> : EventArgs
{
    private T _TargetObject;
    public T TargetObject
    {
        get { return _TargetObject; }
    }

    public EventArgs_Generic(T Target)
    {
        _TargetObject = Target;
    }
}


How do I list this in an interface? Something like...

event EventHandler<T> .... 


Thanks
Everything makes sense in someone's mind

AnswerRe: Generic Event In Interface Pin
Keith Barrow23-Nov-10 6:25
professionalKeith Barrow23-Nov-10 6:25 
QuestionProgrammatically checking DataGridViewCheckBoxCell Pin
kapax523-Nov-10 4:34
kapax523-Nov-10 4:34 
AnswerRe: Programmatically checking DataGridViewCheckBoxCell Pin
Dave Kreskowiak23-Nov-10 6:25
mveDave Kreskowiak23-Nov-10 6:25 
Questionhow to return? Pin
Jassim Rahma23-Nov-10 4:12
Jassim Rahma23-Nov-10 4:12 
AnswerStill not a C# question Pin
Pete O'Hanlon23-Nov-10 4:22
mvePete O'Hanlon23-Nov-10 4:22 
AnswerRe: how to return? Pin
Dave Kreskowiak23-Nov-10 4:30
mveDave Kreskowiak23-Nov-10 4:30 
AnswerRe: how to return? Pin
Keith Barrow23-Nov-10 6:28
professionalKeith Barrow23-Nov-10 6:28 
AnswerRe: how to return? Pin
Smithers-Jones23-Nov-10 6:40
Smithers-Jones23-Nov-10 6:40 
Questionhow to output this from mysql? Pin
Jassim Rahma23-Nov-10 4:10
Jassim Rahma23-Nov-10 4:10 
AnswerRe: how to output this from mysql? Pin
Not Active23-Nov-10 4:14
mentorNot Active23-Nov-10 4:14 
AnswerRe: how to output this from mysql? [modified] Pin
fjdiewornncalwe23-Nov-10 4:15
professionalfjdiewornncalwe23-Nov-10 4:15 
QuestionAppointment alerts - server or pc Pin
Jassim Rahma23-Nov-10 3:56
Jassim Rahma23-Nov-10 3:56 
AnswerRe: Appointment alerts - server or pc Pin
Dave Kreskowiak23-Nov-10 4:28
mveDave Kreskowiak23-Nov-10 4:28 
GeneralRe: Appointment alerts - server or pc Pin
Jassim Rahma24-Nov-10 3:04
Jassim Rahma24-Nov-10 3:04 
GeneralRe: Appointment alerts - server or pc Pin
Dave Kreskowiak24-Nov-10 9:06
mveDave Kreskowiak24-Nov-10 9:06 
QuestionH/W Pin
om_metab23-Nov-10 3:05
om_metab23-Nov-10 3:05 
AnswerRe: H/W Pin
OriginalGriff23-Nov-10 3:15
mveOriginalGriff23-Nov-10 3:15 

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.