Expression.Field Method (Expression, Type, String)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Creates a MemberExpression that represents accessing a field.
Assembly: System.Core (in System.Core.dll)
'Declaration Public Shared Function Field ( _ expression As Expression, _ type As Type, _ fieldName As String _ ) As MemberExpression
Parameters
- expression
- Type: System.Linq.Expressions.Expression
The containing object of the field. This can be null for static fields.
- type
- Type: System.Type
The Type that contains the field.
- fieldName
- Type: System.String
The field to be accessed.
Show: