G
Guest
Hey... I dont know if its possible but i'm trying to emit a class that would
look like this
The Base class commes from the code:
public class BaseClass<T>
{
// Whatever implementation...
}
I want to generate a child class that looks like this:
public class ChildClass<T> : BaseClass<T>
{
}
so i want to define ChildClass<> not ChildClass<int> or ChildClass<object>
....is it possible?
look like this
The Base class commes from the code:
public class BaseClass<T>
{
// Whatever implementation...
}
I want to generate a child class that looks like this:
public class ChildClass<T> : BaseClass<T>
{
}
so i want to define ChildClass<> not ChildClass<int> or ChildClass<object>
....is it possible?