From 2a9aa1017473e4d0e123400c6c8f4ea55013487f Mon Sep 17 00:00:00 2001 From: Maira Wenzel Date: Fri, 30 Nov 2018 10:21:11 -0800 Subject: [PATCH 1/2] escape * (#9315) --- docs/framework/debug-trace-profile/jitcompilationstart-mda.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/framework/debug-trace-profile/jitcompilationstart-mda.md b/docs/framework/debug-trace-profile/jitcompilationstart-mda.md index cdb144216e533..c1c29d96f525a 100644 --- a/docs/framework/debug-trace-profile/jitcompilationstart-mda.md +++ b/docs/framework/debug-trace-profile/jitcompilationstart-mda.md @@ -33,7 +33,7 @@ method name="Test!ns2.C0::m" ``` ## Configuration - The following configuration file shows a variety of filters that can be employed to filter out which methods are reported when they are first JIT-compiled. You can specify that all methods be reported by setting the value of the name attribute to *. + The following configuration file shows a variety of filters that can be employed to filter out which methods are reported when they are first JIT-compiled. You can specify that all methods be reported by setting the value of the name attribute to \*. ```xml From 25a6e26ee4fd52dc18a3f274eb1486b95a13a05e Mon Sep 17 00:00:00 2001 From: "Calvin A. Allen" Date: Fri, 30 Nov 2018 14:37:05 -0500 Subject: [PATCH 2/2] Resolves issue with "Try Pattern" link (#9329) --- .../language-reference/keywords/out-parameter-modifier.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/csharp/language-reference/keywords/out-parameter-modifier.md b/docs/csharp/language-reference/keywords/out-parameter-modifier.md index b9ea003bb4a2b..454e32e1c6899 100644 --- a/docs/csharp/language-reference/keywords/out-parameter-modifier.md +++ b/docs/csharp/language-reference/keywords/out-parameter-modifier.md @@ -47,7 +47,7 @@ You can't use the `in`, `ref`, and `out` keywords for the following kinds of met [!code-csharp-interactive[cs-out-keyword](../../../../samples/snippets/csharp/language-reference/keywords/in-ref-out-modifier/OutParameterModifier.cs#3)] - The [Try pattern](/visualstudio/code-quality/ca1021-avoid-out-parameters#try-pattern-methods.md) involves returning a `bool` to indicate whether an operation succeeded or failed, and returning the value produced by the operation in an `out` argument. A number of parsing methods, such as the [DateTime.TryParse](xref:System.DateTime.TryParse(System.String,System.DateTime@)) method, use this pattern. + The [Try pattern](/visualstudio/code-quality/ca1021-avoid-out-parameters#try-pattern-methods) involves returning a `bool` to indicate whether an operation succeeded or failed, and returning the value produced by the operation in an `out` argument. A number of parsing methods, such as the [DateTime.TryParse](xref:System.DateTime.TryParse(System.String,System.DateTime@)) method, use this pattern. ## Calling a method with an `out` argument