Escape znaków podczas generowania skryptów PowerShell za pomocą C #

Używam VS2010, C #, .NET 3.5 do generowania skryptów Powershell (pliki ps1).

Następnie wymagane są znaki ucieczki dla PowerShell.

Jakieś sugestie dotyczące rozwijania dobrej metody ucieczki od znaków?

  public static partial class StringExtensions
    {
        /*
        PowerShell Special Escape Sequences

        Escape Sequence         Special Character
        `n                      New line
        `r                      Carriage Return
        `t                      Tab
        `a                      Alert
        `b                      Backspace
        `"                      Double Quote
        `'                      Single Quote
        ``                      Back Quote
        `0                      Null
        */

        public static string FormatStringValueForPS(this string value)
        {
            if (value == null) return value;
            return value.Replace("\"", "`\"").Replace("'", "`'");
        }
    }

Stosowanie:

var valueForPs1 = FormatStringValueForPS("My text with \"double quotes\". More Text");
var psString = "$value = \"" + valueForPs1  + "\";";

questionAnswers(1)

yourAnswerToTheQuestion