提交 be4671b7 编写于 作者: A Andrew Peters

Fix a doc comment bug in Expression.VisitChildren


Commit migrated from https://github.com/dotnet/corefx/commit/4070ceb3d89c2d9a0adf51c29cf8f20fc53e5fc5
上级 61e5b7c3
......@@ -133,10 +133,10 @@ public virtual Expression Reduce()
}
/// <summary>
/// Reduces the node and then calls the visitor delegate on the reduced expression.
/// Reduces the node and then calls the <see cref="ExpressionVisitor.Visit(Expression)"/> method passing the reduced expression.
/// Throws an exception if the node isn't reducible.
/// </summary>
/// <param name="visitor">An instance of <see cref="Func{Expression, Expression}"/>.</param>
/// <param name="visitor">An instance of <see cref="ExpressionVisitor"/>.</param>
/// <returns>The expression being visited, or an expression which should replace it in the tree.</returns>
/// <remarks>
/// Override this method to provide logic to walk the node's children.
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册