public class _Base_Client<T> : System.ServiceModel.ClientBase<T>
It complains that The type 'T' must be a reference type in order to use it as parameter 'TChannel'
T is a reference to an interface.
Here is the line I wish to change to use the new base class
public class EchoServiceClient :
System.ServiceModel.ClientBase<IEchoService>, IEchoService
How can I fix this? thanks