Skip to content

Commit e949f03

Browse files
lindexiThraka
authored andcommitted
Fix code compile (#3344)
1 parent c230075 commit e949f03

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xml/System.Diagnostics/ProcessStartInfo.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@
244244
`ArgumentList` is easier to use than the <xref:System.Diagnostics.ProcessStartInfo.Arguments> property. Because each string is assigned to a member of the collection, you can single- rather than triple-escape strings that are delimited by quotation marks. For example, the following example include `-full "Mary Smith"` as a member of the `ArgumentList` collection:
245245
246246
```csharp
247-
info.ArgumentList.Add("-full \"Mary Smith\"";
247+
info.ArgumentList.Add("-full \"Mary Smith\"");
248248
```
249249
250250
The corresponding assignment to the <xref:System.Diagnostics.ProcessStartInfo.Arguments> property is:

0 commit comments

Comments
 (0)