Skip to content

Commit 2211655

Browse files
Youssef1313mairaw
authored andcommitted
Fix indentation (#1866)
1 parent ace93d2 commit 2211655

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

snippets/csharp/VS_Snippets_CLR/Environment.GetCommandLineArgs/CS/getcommandlineargs.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ class Sample
55
{
66
public static void Main()
77
{
8-
Console.WriteLine();
9-
// Invoke this sample with an arbitrary set of command line arguments.
10-
String[] arguments = Environment.GetCommandLineArgs();
11-
Console.WriteLine("GetCommandLineArgs: {0}", String.Join(", ", arguments));
8+
Console.WriteLine();
9+
// Invoke this sample with an arbitrary set of command line arguments.
10+
string[] arguments = Environment.GetCommandLineArgs();
11+
Console.WriteLine("GetCommandLineArgs: {0}", string.Join(", ", arguments));
1212
}
1313
}
1414
/*
@@ -18,4 +18,4 @@ public static void Main()
1818
1919
GetCommandLineArgs: GetCommandLineArgs, ARBITRARY, TEXT
2020
*/
21-
// </snippet1>
21+
// </snippet1>

0 commit comments

Comments
 (0)