Compiler Error CS0544
'property override': cannot override because 'non-property' is not a property
An attempt was made to override a nonproperty data type as a property, which is not allowed.
The following sample generates CS0544:
C#
// CS0544.cs
// compile with: /target:library
public class a
{
public int i;
}
public class b : a
{
public override int i { // CS0544
// try the following line instead
// public new int i {
get
{
return 0;
}
}
}
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
.NET feedback
.NET is an open source project. Select a link to provide feedback: