Inheritance: Platform.Linq.ExpressionVisitor
コード例 #1
0
        public static List <PropertyInfo> Gather(Expression expression, Expression target)
        {
            var gatherer = new ReferencedPropertiesGatherer(target);

            gatherer.Visit(expression);

            return(gatherer.results);
        }
コード例 #2
0
        public static List<PropertyInfo> Gather(Expression expression, Expression target)
        {
            var gatherer = new ReferencedPropertiesGatherer(target);

            gatherer.Visit(expression);

            return gatherer.results;
        }