📌  相关文章
📜  powershell add-type 如果不存在 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:04.338000             🧑  作者: Mango

代码示例1
if (-not ([System.Management.Automation.PSTypeName]'MyClass').Type)
{
    Add-Type -TypeDefinition 'public class MyClass { }'
}