Skip to content

Commit b4d6eaa

Browse files
committed
add link
1 parent cbf7350 commit b4d6eaa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/msbuild/property-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ For example, to set a build property to a new GUID, you can use this script:
6262
<NewGuid>$([System.Guid]::NewGuid())</NewGuid>
6363
```
6464

65-
In MSBuild 17.14 and later, you can use the parameter syntax "out _" to invoke a static method with an `out` parameter. The out parameter value is ignored. For example:
65+
In MSBuild 17.14 and later, you can use the parameter syntax "out _" to invoke a static method with an `out` parameter. See [Reference parameters](/dotnet/csharp/language-reference/keywords/method-parameters#reference-parameters). The `out` parameter value is ignored. For example:
6666

6767
```xml
6868
<IsInteger>$([System.Int32]::TryParse("123", out _))</IsInteger>

0 commit comments

Comments
 (0)