I have a class that looks like:
public class InvokeProxy : MarshalRefByObject, IFace
{
public InvokeProxy(IFace face)
{
this.Face = face;
}
private IFace Face { get; set; }
public string Execute(string data)
{
return this.Face.Execute(data)
}
}
And I’m tasked with making it generic. Since I can’t inherit from the generic class, I’m somewhat stuck, does anyone know a workaround?
I’m not really sure what you’re looking to do by making
InvokeProxyintoInvokeProxy<T>…does this help?