1 2 3 4 5 6 7 8 9 10
namespace gorilla.infrastructure.proxies { static public class ProxyFactory { static public T create<T>(T target, params Interceptor[] interceptors) { return new RemotingProxyFactory<T>(target, interceptors).create_proxy(); } } }