-
-
Save richlander/741057e8c0c1906efeb46d4f4c4281cb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Project Sdk="Microsoft.NET.Sdk"> | |
<PropertyGroup> | |
<OutputType>Exe</OutputType> | |
<TargetFramework>net5.0</TargetFramework> | |
<Nullable>Enable</Nullable> | |
</PropertyGroup> | |
</Project> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
Console.WriteLine("Hello World!"); |
And if you want to access command line arguments, args is available as a "magic" parameter.
— https://devblogs.microsoft.com/dotnet/c-9-0-on-the-record/#top-level-programs
Thanks @qbit86.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@contact4manoj