Git.Core.Object.ParseZero C# (CSharp) Method

ParseZero() protected static method

protected static ParseZero ( byte input, int &pos ) : bool
input byte
pos int
return bool
        protected static bool ParseZero(byte[] input, ref int pos)
        {
            if (input.Length == pos)
                return false;

            if ((char)input[pos++] == '\0')
                return true;
            else {
                pos--;
                return false;
            }
        }