M
Michael Carr
Does anybody know how to inherit from a class with a private constructor? I
am trying to inherit from DataRow as follows:
public class MyDataRow : DataRow
{
private MyDataRow()
{
}
}
When I compile this, I get "No overload for method 'DataRow' takes '0'
arguments"
Any ideas?
Thank you,
Michael Carr
am trying to inherit from DataRow as follows:
public class MyDataRow : DataRow
{
private MyDataRow()
{
}
}
When I compile this, I get "No overload for method 'DataRow' takes '0'
arguments"
Any ideas?
Thank you,
Michael Carr