Skip to the content.

< Back


MyGrandchildClass

Namespace: MyClassLib

A grandchild that seals one override and hides a base method with new.

public sealed class MyGrandchildClass : MyDerivedClass

Inheritance ObjectMyAbstractClassMyDerivedClassMyGrandchildClass

Properties

MyProperty

My abstract property.

public override int MyProperty { get; set; }

Property Value

Int32
The property value.

Constructors

MyGrandchildClass()

public MyGrandchildClass()

Methods

Label()

Seals the MyDerivedClass.Label() override.

public sealed override string Label()

Returns

String
A label.

Do()

Hides the base MyAbstractClass.Do() with a same-named method.

public new void Do()

< Back