You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/msbuild/property-functions.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,7 +62,7 @@ For example, to set a build property to a new GUID, you can use this script:
62
62
<NewGuid>$([System.Guid]::NewGuid())</NewGuid>
63
63
```
64
64
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:
66
66
67
67
```xml
68
68
<IsInteger>$([System.Int32]::TryParse("123", out _))</IsInteger>
0 commit comments