Click or drag to resize

Operation Enumeration

The data structure representing a diff is a List of Diff objects: {Diff(Operation.DELETE, "Hello"), Diff(Operation.INSERT, "Goodbye"), Diff(Operation.EQUAL, " world.")} which means: delete "Hello", add "Goodbye" and keep " world."

Namespace: GSF.Text
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.181-beta
Syntax
public enum Operation
Members
Member nameValueDescription
DELETE0 Target deletes text
INSERT1 Target inserts text
EQUAL2 Source and target are the same
See Also