Base Inherit DocMethod With Lots Of Comments Method
The method in the base class has lots of comments.
Definition
Namespace: XMLCommentsExamples.DocumentationInheritance
Assembly: XMLCommentsExamples (in XMLCommentsExamples.dll) Version: 2025.4.26.0
Assembly: XMLCommentsExamples (in XMLCommentsExamples.dll) Version: 2025.4.26.0
C#
public virtual void MethodWithLotsOfComments(
int x
)VB
Public Overridable Sub MethodWithLotsOfComments (
x As Integer
)C++
public:
virtual void MethodWithLotsOfComments(
int x
)F#
abstract MethodWithLotsOfComments :
x : int -> unit
override MethodWithLotsOfComments :
x : int -> unit Parameters
- x Int32
- The parameter
Remarks
Remarks for the base class
Example
/// Example goes here
Exceptions
| ArgumentException | Thrown if x is zero |
| ArgumentOutOfRangeException | Thrown if x is less than zero. |