GitSharp.Core.ByteArrayWindow.copy C# (CSharp) Method

copy() protected method

protected copy ( int p, byte b, int o, int n ) : int
p int
b byte
o int
n int
return int
        protected override int copy(int p, byte[] b, int o, int n)
        {
            n = Math.Min(_array.Length - p, n);
            Array.Copy(_array, p, b, o, n);
            return n;
        }