Skip to content

Instantly share code, notes, and snippets.

@0x414c49
Created December 19, 2019 10:26
Show Gist options
  • Save 0x414c49/256f45313fde95748c542d645122c769 to your computer and use it in GitHub Desktop.
Save 0x414c49/256f45313fde95748c542d645122c769 to your computer and use it in GitHub Desktop.
C# Scripting sample1
using System;
using System.IO;
var today = DateTime.Now.ToString();
var message = $"Hello World, This file is created at {today}";
// Some fancy comment here
class Foo
{
public void Bar()
{
Console.WriteLine("Hello World!");
}
}
var obj = new Foo();
obj.Bar();
Console.WriteLine(message);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment