GitSharp.Core.Commit.ExtractTrailingBytes C# (CSharp) 메소드

ExtractTrailingBytes() 개인적인 정적인 메소드

private static ExtractTrailingBytes ( byte source, string prefix ) : byte[]
source byte
prefix string
리턴 byte[]
        private static byte[] ExtractTrailingBytes(byte[] source, string prefix)
        {
            var rawAuthor2 = new byte[source.Length - prefix.Length];
            Array.Copy(source, prefix.Length, rawAuthor2, 0, source.Length - prefix.Length);
            return rawAuthor2;
        }