BatchGuy.App.Extensions.ExtensionMethods.RemoveDoubleQuotes C# (CSharp) Method

RemoveDoubleQuotes() public static method

public static RemoveDoubleQuotes ( this value ) : string
value this
return string
        public static string RemoveDoubleQuotes(this string value)
        {
            string result = value.Replace("\"", string.Empty);

            return result;
        }