-
Notifications
You must be signed in to change notification settings - Fork 34
M_CodeJam_Reflection_InfoOf_Field__1
andrewvk edited this page Mar 30, 2016
·
9 revisions
[This is preliminary documentation and is subject to change.]
Returns the field.
Namespace: CodeJam.Reflection
Assembly: CodeJam (in CodeJam.dll) Version: 1.0.0.0 (1.0.0.0)
C#
[NotNullAttribute]
[PureAttribute]
public static FieldInfo Field<TValue>(
[NotNullAttribute] Expression<Func<TValue>> expression
)VB
<NotNullAttribute>
<PureAttribute>
Public Shared Function Field(Of TValue) (
<NotNullAttribute> expression As Expression(Of Func(Of TValue))
) As FieldInfoF#
[<NotNullAttribute>]
[<PureAttribute>]
static member Field :
[<NotNullAttribute>] expression : Expression<Func<'TValue>> -> FieldInfo
- expression
- Type: System.Linq.Expressions.Expression(Func(TValue))
The expression to analyze.
- TValue