Click or drag to resize
Sandcastle XML Comments GuideDerivedClassWithInheritedDocsMethodWithExample Method
An override of the method with an example

Namespace: XMLCommentsExamples.DocumentationInheritance
Assembly: XMLCommentsExamples (in XMLCommentsExamples.dll) Version: 2014.1.26.0
Syntax
public override bool MethodWithExample()

Return Value

Type: Boolean
Always returns false
Examples
This example is from the base class
// 'x' is always true
bool x = instance.MethodWithExample();

This example applies to the derived class:
if(derivedInstance.MethodWithExample())
    Console.WriteLine("This is never reached");
See Also