Skip to content

Instantly share code, notes, and snippets.

@h4ck4life
Forked from Sh1n0g1/Helloworld_C_Sharp.ps1
Created April 26, 2020 15:49
Show Gist options
  • Save h4ck4life/f3e92d4a485b4d57a40afe5c782ee7be to your computer and use it in GitHub Desktop.
Save h4ck4life/f3e92d4a485b4d57a40afe5c782ee7be 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