I am writing PowerShell Cmdlets using the PSCmdlet class in C#.
[Cmdlet(VerbsCommon.Get, "Employee")]
public class GetEmployee : PSCmdlet
I want to provide more information in Remarks, Description, Synopsis section of Get-Help Get-Employee
Anyone knows how to add/fill these sections?