在我的代码中没有“非公开”或“静态”方法。所有都是public.I正在创建一个Custom工具类,但是当我尝试从远程对象上的这个类调用一个方法时,我遇到了一个例外:
权限被拒绝:无法远程调用非公共或静态方法。 每次都在以下行失败。
public ref class CustomTool : public Tool
{
public:
CustomTool():Tool()
{
}
};
CustomTool ^cs = gcnew CustomTool();
window->SetTool(cs); // here
答案 0 :(得分:0)
问题可能在于“ SetTool ”,而不是对象“ cs ”。
SetTool 是什么样的?