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 45a4f89 commit f51fb9bCopy full SHA for f51fb9b
docs/csharp/language-reference/keywords/out.md
@@ -27,7 +27,7 @@ The `out` keyword is especially useful when a method needs to return more than o
27
//Calculate the circumference and area of a circle, returning the results to Main().
28
CalculateCircumferenceAndArea(radiusValue, out double circumferenceResult, out var areaResult);
29
System.Console.WriteLine($"Circumference of a circle with a radius of {radiusValue} is {circumferenceResult}.");
30
- System.Console.WriteLine($"Are of a circle with a radius of {radiusValue} is {areaResult}.");
+ System.Console.WriteLine($"Area of a circle with a radius of {radiusValue} is {areaResult}.");
31
Console.ReadLine();
32
}
33
0 commit comments