Skip to content

Instantly share code, notes, and snippets.

@DavideDunne
Created March 7, 2024 18:39
Show Gist options
  • Save DavideDunne/54bb84efff02fb20fa44aa5e4a8029eb to your computer and use it in GitHub Desktop.
Save DavideDunne/54bb84efff02fb20fa44aa5e4a8029eb to your computer and use it in GitHub Desktop.
Interview template for C#
#region headers
global using static System.Console;
//Implicit using List:
// using System
// using System.Collections.Generic
// using System.IO
// using System.Linq
// using System.Net.Http
// using System.Threading
// using System.Threading.Task
#endregion
namespace InterviewTemplate
{
internal class Program
{
static void Main()
{
WriteLine("Hello world");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment