diff --git a/snippets/csharp/System.IO/Path/Combine/Program.cs b/snippets/csharp/System.IO/Path/Combine/Program.cs index 67bad002035..844fff76a84 100644 --- a/snippets/csharp/System.IO/Path/Combine/Program.cs +++ b/snippets/csharp/System.IO/Path/Combine/Program.cs @@ -76,7 +76,7 @@ private static void Combine4() // C:\Pictures\Saved Pictures\2019\Jan\ // // The example displays the following output if run on a Unix-based system: - // C:\Pictures\Saved Pictures\2019\Jan\ + // C:\Pictures\/Saved Pictures\/2019\/Jan\ // } } diff --git a/snippets/visualbasic/api/system.io/path/combine/Program.vb b/snippets/visualbasic/api/system.io/path/combine/Program.vb index a201121609a..650a7737c8c 100644 --- a/snippets/visualbasic/api/system.io/path/combine/Program.vb +++ b/snippets/visualbasic/api/system.io/path/combine/Program.vb @@ -72,7 +72,7 @@ Module Program ' C:\Pictures\Saved Pictures\2019\Jan\ ' ' The example displays the following output if run on a Unix-based system: - ' C:\Pictures\Saved Pictures\2019\Jan\ + ' C:\Pictures\/Saved Pictures\/2019\/Jan\ ' End Sub End Module