We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d04c1eb commit 5a19eb3Copy full SHA for 5a19eb3
docs/csharp/snippets/methods/named1.cs
@@ -13,7 +13,7 @@ static void Main()
13
var moto = new TestMotorcycle();
14
moto.StartEngine();
15
moto.AddGas(15);
16
- int travelTime = moto.Drive(miles: 170, speed: 60);
+ int travelTime = moto.Drive(speed: 60, miles: 170);
17
Console.WriteLine("Travel time: approx. {0} hours", travelTime);
18
}
19
0 commit comments