提交 6897ef2a 编写于 作者: S Stephen Toub

Merge pull request dotnet/corefx#9223 from dotnet/anpete-patch-1

Fixes a doc comment bug in Expression.VisitChildren.

Commit migrated from https://github.com/dotnet/corefx/commit/6339c40d6971c9502c8b168ba20dab6052f1d9c7
......@@ -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.
先完成此消息的编辑!
想要评论请 注册