Home
VB.Net
2D
Application
Class
Data Structure
Data Types
Database ADO.net
Date Time
Development
Event
File Directory
Generics
GUI
Internationalization I18N
Language Basics
LINQ
Network Remote
Reflection
Security
Thread
Windows Presentation Foundation
Windows System
XML
XML LINQ
Lambda « Language Basics « VB.Net
VB.Net
Language Basics
Lambda
1.
Func(T, TResult) represents a method that has one parameter and returns one value
2.
Instantiate delegate to reference method
3.
Lambda Expression and Function
4.
Declare a Func variable and assign a lambda expression to the variable
5.
Predicate(T) Delegate represents the method that defines a set of criteria
6.
Converter(TInput, TOutput) Delegate represents a method that converts an object from one type to another type.
7.
Func(TResult) Delegate represents a method with no parameters returning a value of the type specified by the TResult parameter.