Base Inherit DocMethod With Example Method
Summary for the method with an example
Definition
Namespace: XMLCommentsExamples.DocumentationInheritance
Assembly: XMLCommentsExamples (in XMLCommentsExamples.dll) Version: 2025.4.26.0
True all the time
Assembly: XMLCommentsExamples (in XMLCommentsExamples.dll) Version: 2025.4.26.0
C#
public virtual bool MethodWithExample()VB
Public Overridable Function MethodWithExample As BooleanC++
public:
virtual bool MethodWithExample()F#
abstract MethodWithExample : unit -> bool
override MethodWithExample : unit -> bool Return Value
BooleanTrue all the time
Example
This example is from the base class
// 'x' is always true
bool x = instance.MethodWithExample();