GSF.Core by Grid Protection Alliance

<PackageReference Include="GSF.Core" Version="2.4.150-beta" />

 Patch

public class Patch
Class representing one patch operation.
public List<Diff> Diffs { get; set; }

List of Diffs in the patch

public int Length1 { get; set; }

Number of lines from source contained in this patch

public int Length2 { get; set; }

Number of lines from target contained in this patch

public int Start1 { get; set; }

Source line number (zero-based index)

public int Start2 { get; set; }

Target line number (zero-based index)

public Patch()