GitSharp.Core.Transport.OpenSshConfig.dequote C# (CSharp) Method

dequote() private static method

private static dequote ( string value ) : string
value string
return string
        private static string dequote(string value)
        {
            if (value.StartsWith("\"") && value.EndsWith("\""))
                return value.Slice(1, value.Length - 1);
            return value;
        }