PowerShellPerformance/ToString_Or_Not_ToString.benchmark.ps1

Import-Module Benchpress -Global
bench -Technique @{
    'ToString' = {
        $PWD.ToString()
    }
    'Quoted' = {
        "$pwd"
    }
}