Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 619 Bytes

File metadata and controls

24 lines (16 loc) · 619 Bytes

ExpressionExtensions.GetMembers<T,TR> method

Get all members used in a LINQ Expression (built from a lambda for instance)

public static IList<MemberInfo> GetMembers<T, TR>(this Expression<Func<T, TR>> expression)
parameter description
T Expression's input type
TR Expression's return type
expression Source expression

Return Value

A list of MemberInfo

See Also