Exactly this code: compile error says use of base is not valid in this context.
public class UCMComboBoxCellType : FarPoint.Win.Spread.CellType.ComboBoxCellType
{
public UCMComboBoxCellType()
{
base();
this.ListWidth = 0;
}
}
but why? I cannot figure out.
In C# you chain constructors like this:
What you tried is the Java way.