PowerShell: region/endregion example
<#
The #region and #endregion tags are case-sensitive.
Some programs implement case-insensitive tags, but other programs will not work with them.
#>
#region Example Region
#region Get-Something
function Get-Something {
}
#endregion
#endregion