gpt4 book ai didi

c# - 如何调用我的 dll 并在 powershell 脚本中使用它

转载 作者:太空狗 更新时间:2023-10-29 20:13:46 24 4
gpt4 key购买 nike

我有自己的dll,是用c#写的。
现在我想从我的 powershell 脚本中调用它。
我做了以下事情;

[System.Reflection.Assembly]::LoadFile("E:\MyClass.dll")
$MyCompObj = New-Object MyClass.Student

但是当我执行它时,它给我错误
未找到构造函数。找不到适合类型 MyClass.Student 的构造函数

我是不是按照错误的方式来做这件事??
请帮我解决这个问题。

最佳答案

你的类有构造函数(至少一个)。所以用好的参数创建对象

$MyCompObj = New-Object MyClass.Student -argumentlist "arg1","Arg2" ...

关于c# - 如何调用我的 dll 并在 powershell 脚本中使用它,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17966056/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com