Skip to content

Instantly share code, notes, and snippets.

@richlander
Created October 13, 2020 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save richlander/741057e8c0c1906efeb46d4f4c4281cb to your computer and use it in GitHub Desktop.
Save richlander/741057e8c0c1906efeb46d4f4c4281cb to your computer and use it in GitHub Desktop.
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<Nullable>Enable</Nullable>
</PropertyGroup>
</Project>
using System;
Console.WriteLine("Hello World!");
@pmunin
Copy link

pmunin commented Nov 10, 2020

what if there are multiple .cs files with its root level code? will they all execute? if yes, what will be the order of execution?

does it only work for apps or for DLLs too?

@contact4manoj
Copy link

what if there are multiple .cs files with its root level code? will they all execute? if yes, what will be the order of execution?

Then, it would not work. This feature has been provided to facilitate rolling out single file programs - like the ones a developer of C program used to work with 😄

does it only work for apps or for DLLs too?

This feature is meant to work as a substitute for the effort to declare the public static void Main() method declaration. Note: This implies no usage of command line parameters.

@qbit86
Copy link

qbit86 commented Nov 14, 2020

Note: This implies no usage of command line parameters.

@contact4manoj

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

@contact4manoj
Copy link

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.

@khellang
Copy link

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment