SimpleClass
- Namespace: TestProject.Models
- Source File: SimpleClass.cs
// This is a simple class with only regular comments // Used to test the documentation parser's handling of non-XML comments
Fields
Name (string): // A simple field
Value (int) = 42: // Another field with a comment
Properties
IsActive
(bool) { get; set }: // A property with getter and setter
Public Methods
DoSomething
public void DoSomething()
// A method that does something simple
GetDescription
public string GetDescription(string prefix)
// Method with parameters and return value
Parameters:
prefix(string)
Returns: string