我已经做了很多的搜索,也做了,我已经找到了建议,但似乎没有奏效。 返回一些最简单的C#DLL文件:
namespace TestClass
{
public class Class1
{
public int tester()
{
return 5;
}
}
}
ColdFusion的代码:
<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>