C# 클래스 GitSharp.Core.BinaryDelta

Recreate a stream from a base stream and a GIT pack delta. This entire class is heavily cribbed from patch-delta.c in the GIT project. The original delta patching code was written by Nicolas Pitre (<[email protected]>).
파일 보기 프로젝트 열기: stschake/GitSharp 1 사용 예제들

공개 메소드들

메소드 설명
Apply ( byte baseData, byte delta ) : byte[]

Apply the changes defined by delta to the data in base, yielding a new array of bytes.

메소드 상세

Apply() 공개 정적인 메소드

Apply the changes defined by delta to the data in base, yielding a new array of bytes.
public static Apply ( byte baseData, byte delta ) : byte[]
baseData byte some byte representing an object of some kind.
delta byte /// A git pack delta defining the transform from one version to /// another. ///
리턴 byte[]