I would like to use a generic type within another generic type.
but getting the following exception:
The type
'MockManagers.ToPos'cannot be used as type parameter'Res'in the generic type or method'MockManagers.IMockManager<Req,Res>'. There is no implicit reference conversion from'MockManagers.ToPos'to'MockManagers.MockResponseObject<System.IComparable>'.
I tried few option to solve this without any luck. This reference suggest to pass the inner generic type to as a parameter to the higher level generic type. is this the only solution?
The code:
My Interface:
/// <summary>
/// Represents IMockManager for mock object creation object.
/// </summary>
/// <typeparam name="Req">The request object Type.</typeparam>
/// <typeparam name="Res">The response object type.</typeparam>
public interface IMockManager<Req, Res>
where Req : MockRequestObject
where Res : MockResponseObject<IComparable>
{...//interface definitions}
objects implementatation:
/// <summary>
/// Represents Mock response for a request object
/// </summary>
public class ToPos : MockResponseObject<byte[]>
{... //implementation}
public class MockBaseObject
{
public int Id { get; set; }
}
public class MockResponseObject<T> : MockBaseObject
{
/// <summary>
/// The response content.
/// </summary>
public T Content { get; set; }
/// <summary>
/// Res creation date.
/// </summary>
public DateTime CreationDate { get; set; }
}
byte[]definitelyIComparable? I wouldn't have thought an array of them would be. If you remove that restriction forResdoes it work? – Rup Jun 25 '12 at 11:59<Generic>angle brackets become hidden). I'm not doing it again, but please do so yourself. – Damien_The_Unbeliever Jun 25 '12 at 12:05IMockManager?? roolyeye where interface is implemented ? – Jasper Jun 25 '12 at 14:08