Hi, I have a this code which works OK:
class c <T>
{
public T method (T p)
{
// ...
}
}
but I would need this:
class C <T, U>
{
public U method (T p)
{
// ...
}
}
How could I write it, compiler reports error?