An abstract class.
public abstract class ExampleAbstractClass
| name | description |
|---|---|
| abstract PublicProperty { get; } | A public abstract read-only property. |
| virtual PublicProtectedProperty { get; protected set; } | A public and protected virtual property. |
| abstract PublicMethod() | A public abstract method. |
| name | description |
|---|---|
| ExampleAbstractClass() | The default constructor. |
| virtual ProtectedPrivateProperty { set; } | A protected and private virtual property. |
| abstract ProtectedPropertyCore { get; set; } | A protected abstract property. |
| abstract ProtectedInternalMethodCore() | A protected internal abstract method. |
| abstract ProtectedMethodCore() | A protected abstract method. |