Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The type 'class' has no constructors defined
There is no appropriate constructor available. This is the case for built-in numeric value types, which are initialized simply by assigning a value to them.
The following sample generates CS0143:
// CS0143.cs
class MyClass
{
static public void Main ()
{
double d = new double(4.5); // CS0143
// Try this line instead:
// double d = 4.5;
}
}