Click or drag to resize

CreatorMapDelegateCompilerCompileCreatorDelegateTClass Method

Creates and compiles a delegate from a lambda expression.

Namespace:  MongoDB.Bson.Serialization
Assembly:  MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.13.1-v2-13-x1+a7f8afe27855f38f4f72157d11ba2ae73895502e
Syntax
public Delegate CompileCreatorDelegate<TClass>(
	Expression<Func<TClass, TClass>> creatorLambda,
	out IEnumerable<MemberInfo> arguments
)

Parameters

creatorLambda
Type: System.Linq.ExpressionsExpressionFuncTClass, TClass
The lambda expression.
arguments
Type: System.Collections.GenericIEnumerableMemberInfo
The arguments for the delegate's parameters.

Type Parameters

TClass
The type of the class.

Return Value

Type: Delegate
A delegate.
See Also