- Shuffle
Toggle OnToggle Off
- Alphabetize
Toggle OnToggle Off
- Front First
Toggle OnToggle Off
- Both Sides
Toggle OnToggle Off
Front
How to study your flashcards.
Right/Left arrow keys: Navigate between flashcards.right arrow keyleft arrow key
Up/Down arrow keys: Flip the card between the front and back.down keyup key
H key: Show hint (3rd side).h key
![]()
PLAY BUTTON
![]()
PLAY BUTTON
![]()
10 Cards in this Set
- Front
- Back
|
What is a delegate?
|
A delegate is a function pointer like data structure that represents static and instance methods. It defines a contract that specifies the signature of one or more methods.
|
|
In which order are the methods in a delegate's invocation list invoked?
|
FIFO
|
|
In which order are the return values from methods in a delegate's invocation list returned?
|
Only the last return value is returned.
|
|
Are delegates mutable?
|
No.
|
|
Delegate types inherit from which object?
|
Delegate or MulticastDelegate
|
|
What MulticastDelegate method adds delegates to a another delegate?
|
Combine or +
|
|
What MulticastDelegate method deletes delegates from another delegate?
|
Remove or -
|
|
Base class for classes containing event data.
|
EventArgs
|
|
Represents the method that will handle an event that has no event data.
|
EventHandler Delegate
|
|
What is the difference between events and delegates.
|
Events are delegate modifiers. Events can be declared in an interface and can only be invoked by the object it was declared in.
|