是否可以使用 RemoteObject 和源从 Flex 创建 C# Generic 类的实例?
remoteObject = new RemoteObject("fluorine");
remoteObject.source="Service.GenericClass`1"; //how specific the entity class??
remoteObject.getMethod(arg1, arg2);
我收到此错误消息:
无法创建 Service.GenericClass``1[T] 的实例,因为 ContainsGenericParameters 为真。
这是有道理的,因为我没有指定实体类,但是,我该怎么做?
我正在使用 FluorineFx 进行远程处理。