Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
PSKoans
0.65.0
Classes/KoanAttribute.ps1
Add-Type
-TypeDefinition
@'
using System;
public class KoanAttribute : Attribute
{
public uint Position = UInt32.MaxValue;
public string Module = "_powershell";
}
'@