私は多くの検索を行い、見つけた提案を行いましたが、何も機能していないようです。数値を返す最も単純な C# DLL ファイル:
namespace TestClass
{
public class Class1
{
public int tester()
{
return 5;
}
}
}
コールドフュージョンのコード:
<cfobject type=".NET" name="myDLL" class="TestClass.Class1" assembly="d:/path/to/dll/TestClass.dll">
私の試みはすべて、このエラーにつながりました:
Class TestClass.Class12 not found in the specified assembly list.
The assembly that contains the class must be provided to the assembly attribute.
問題がどこにあるのかわかりません。どんな助けでも大歓迎です。
また、以下のコードは機能します。
<cfobject type=".NET" name="seClass" class="System.Environment">
<cfoutput>#seClass.Get_Version().ToString()#</cfoutput>