// ソフトウェア Erwin の //DLL ライブラリによって実行されるプログラムを作成する必要があります。// プロジェクトに DLL をインポートしました。コードは次のとおりです。
// 例外は:Error 80040154 unregistered interface
// どうしたの ?どうすればそれができますか?
// これは完全なコードです:
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
namespace Prova1
{
class MainClass
{
public static void Main(string[] args)
{
try
{
SCAPI.Application scApp = new SCAPI.Application();//Exception
if (scApp == null)
{
Console.WriteLine("Erwin API could not be started.");
return;
}
Console.WriteLine(" Hello World!" + scApp.ApiVersion);
}
catch (Exception e){
Console.WriteLine(e.Message);
}
}
}
}