PowerShellPerformance/ToString_Or_Not_ToString.benchmark.ps1

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