using
System;
using
System.Runtime.InteropServices;
namespace
MyTestCOMClient
{
[Guid(
"EB6BB021-850D-429B-88BC-587A77E8CC9E"
)]
public
class
Program
{
public
string
abc(
string
str)
{
try
{
var server =
new
MyTestComActivation.IMyTestComInterface();
string
[] list = {
"aaa"
,
"bbb"
,
"ccc"
};
var add = server.AddString(str,
"かきくけこ"
, list);
return
add;
}
catch
(Exception e)
{
System.Diagnostics.Trace.WriteLine(e.Message);
}
return
""
;
}
}
namespace
MyTestComActivation
{
[ComImport]
[CoClass(
typeof
(MyTestComServer))]
[Guid(ContractGuids.ServerInterface)]
internal
interface
IMyTestComInterface : IMyTestCOMServer
{
}
[ComImport]
[Guid(ContractGuids.ServerClass)]
internal
class
MyTestComServer
{
}
}
}