Tagged Questions
4
votes
4answers
4k views
Java: Instantiating a generic class with no default constructor
I am trying to do this:
public class BaseTable<T extends TableEntry>
{
protected int mRows;
protected int mCols;
protected ArrayList<T> mEntries;
public BaseTable(int ...
36
votes
6answers
34k views
Creating instance of type without default constructor in C# using reflection
Take the following class as an example:
class Sometype
{
int someValue;
public Sometype(int someValue)
{
this.someValue = someValue;
}
}
I then want to create an instance ...