Added return type information of WriteLine (#21913)

* Added return type information of WriteLine

* Fixed grammar
This commit is contained in:
Max Dionysius
2018-11-17 03:50:35 +01:00
committed by Manish Giri
parent 22ed2b964a
commit 910b1baaf7

View File

@ -4,7 +4,7 @@ title: Hello World
# Hello World
To write some text on the console we use the `Console.WriteLine()`. This method takes a string as input.
To write some text on the console we use the `Console.WriteLine()`. This method takes a string as input and has a return type of `void`.
## Example
```csharp