コード例 #1
0
        protected void ProcessMemberAccess(Expression memberExpression)
        {
            var visitor = new PropertyPathVisitor();

            Path         = visitor.BuildPropertyPath(memberExpression);
            PropertyType = visitor.PropertyType;
        }
コード例 #2
0
 protected void ProcessMemberAccess(Expression memberExpression)
 {
     var visitor = new PropertyPathVisitor();
     
     Path = visitor.BuildPropertyPath(memberExpression);
     PropertyType = visitor.PropertyType;
 }