powershell c# convert comobject to .net

本文关键字:to net comobject convert powershell | 更新日期: 2023-09-27 18:07:58

我使用以下代码从outlook检索一个特定的地址簿:

$outlook = $(New-Object -ComObject Outlook.Application)
$Session = $outlook.Session
$Session.Logon()
$ab = $Session.AddressLists | ? {$_.Name -eq 'test'}

然后尝试使用c#将$ab对象转换为.net,使用以下命令:

$source = @"
using Microsoft.Office.Interop.Outlook;
public unsafe static class OAB
{
    public static void List(object Stream) 
    {
       var i = Stream as Microsoft.Office.Interop.Outlook.AddressList; 
       return i;
    }
}
"@
$cp = new-object System.CodeDom.Compiler.CompilerParameters                                                                                                                                                                                                 
$cp.CompilerOptions = "/unsafe"
$cp.ReferencedAssemblies.Add('C:'wkdir'refassem'Microsoft.Office.Interop.Outlook.dll')
Add-Type -TypeDefinition $source -CompilerParameters $cp

我收到的错误是:

Since 'OAB.List(object)' returns void, a return keyword must not be followed by an object expression

免责声明,我是一个完全的c#新手,所以请原谅我!

powershell c# convert comobject to .net

您将List函数声明为void的返回类型,但您返回的是一个值。要修复,只需将函数更改为:

public static Microsoft.Office.Interop.Outlook.AddressList List(object Stream)

void函数表示不返回任何值。如果您计划返回一个值,那么您需要删除void并将其替换为您想要返回的类型。