Skip to content

Instantly share code, notes, and snippets.

@Sh1n0g1
Created August 26, 2017 01:33
Show Gist options
  • Save Sh1n0g1/8e98dcaf8df5f2951f1e52607a127191 to your computer and use it in GitHub Desktop.
Save Sh1n0g1/8e98dcaf8df5f2951f1e52607a127191 to your computer and use it in GitHub Desktop.
Run C# code in PowerShell
$assemblies=(
"System"
)
$source=@"
using System;
namespace Helloworld
{
public static class Hello{
public static void Main(){
Console.WriteLine("Hello, world!");
}
}
}
"@
Add-Type -ReferencedAssemblies $assemblies -TypeDefinition $source -Language CSharp
[HelloWorld.Hello]::Main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment