PSILAsm icon indicating copy to clipboard operation
PSILAsm copied to clipboard

Inline MSIL in PowerShell

Results 1 PSILAsm issues
Sort by recently updated
recently updated
newest added

```powershell #requires -version 6 using namespace System.Reflection.Emit using namespace System.Management.Automation function New-ILMethod { [CmdletBinding()] param( [Parameter(Mandatory, Position=0)] [ValidateNotNullOrEmpty()] [String]$Code, [Parameter()][Type]$ReturnType = [void], [Parameter()][Type[]]$Parameters = @(), [Parameter()][ScriptBlock]$Variables ) process { $dm...