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

yesno() private static method

private static yesno ( string value ) : bool
value string
return bool
        private static bool yesno(string value)
        {
            if ("yes".Equals(value, StringComparison.CurrentCultureIgnoreCase))
                return true;
            return false;
        }