Machine.UrlStrong.Translation.Model.StringExtensions.EscapeReservedWords C# (CSharp) Method

EscapeReservedWords() public static method

public static EscapeReservedWords ( this str ) : string
str this
return string
    public static string EscapeReservedWords(this string str)
    {
      if (_reservedWords.ContainsKey(str))
        return '@' + str;

      return str;
    }