System.Net.Topology.ByteArrayExtensions.CountFromLeft C# (CSharp) Method

CountFromLeft() static private method

static private CountFromLeft ( this bits, bool value ) : int
bits this
value bool
return int
        internal static int CountFromLeft(this byte[] bits, bool value)
        {
            if (bits == null)
                throw new ArgumentNullException(nameof(bits));
            return CountFromSide(bits, value, true);
        }