Location via proxy:
[ UP ]
[Report a bug]
[Manage cookies]
No cookies
No scripts
No ads
No referrer
Show this form
Home
C# / C Sharp
2D Graphics
Class Interface
Collections Data Structure
Components
Data Types
Database ADO.net
Date Time
Design Patterns
Development Class
Event
File Stream
Generics
GUI Windows Form
Internationalization I18N
Language Basics
LINQ
Network
Office
Reflection
Regular Expressions
Security
Services Event
Thread
Web Services
Windows
Windows Presentation Foundation
XML
XML LINQ
delegate anonymous « Language Basics « C# / C Sharp
C# / C Sharp
Language Basics
delegate anonymous
1.
Define an anonymous method with the delegate keyword.
2.
Anonymous methods can refer to local variables of the containing function and class members within the scope of the method definition
3.
Anonymous methods can be assigned a signature, which is appended to the delegate keyword.
4.
two delegates and anonymous methods
5.
Local variables used in an anonymous method are called outer variables.
6.
Anonymous methods can be assigned a signature
7.
Associating the delegate with an anonymous method.