MyITGuy
4/19/2016 - 3:08 PM

PowerShell: region/endregion example

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