Skip to the content.

< Back


InheritDocDerived

Namespace: MyClassLib

Demonstrates <inheritdoc/> on overridden members.

public class InheritDocDerived : InheritDocBase

Inheritance ObjectInheritDocBaseInheritDocDerived
Attributes NullableContextAttribute, NullableAttribute

Properties

Name

The configured name.

public override string Name { get; set; }

Property Value

String
The display name.

Constructors

InheritDocDerived()

public InheritDocDerived()

Methods

Process(Int32)

Processes an input value.

public override int Process(int value)

Parameters

value Int32
The input value.

Returns

Int32
The processed value.

Exceptions

ArgumentException
Thrown when value is negative.

ProcessTwice(Int32)

Keeps its own summary but inherits the rest from InheritDocBase.Process(Int32).

public int ProcessTwice(int value)

Parameters

value Int32
The input value.

Returns

Int32
The processed value.

Exceptions

ArgumentException
Thrown when value is negative.


< Back