[]
Specifies the result of comparing two range locations.
public enum LocationRelation
AdjacentAfter = 11This instance occurs after, and is adjacent to, the other range.
AdjacentBefore = 8This instance occurs before, and is adjacent to, the other range.
After = 13This instance occurs after the other range.
Before = 10This instance occurs before the other range.
Contains = 4This instance contains the other range, and both start and end of this instance are outside the other range.
ContainsEnd = 3This instance contains the other range and both have the same end, but different start locations.
ContainsStart = 2This instance contains the other range and both have the same start, but different end locations.
Equal = 1This instance and the other range represent the same range.
Inside = 7This instance is inside the other range, and both start and end of this instance are inside the other range.
InsideEnd = 6This instance is inside the other range and both have the same end, but different start locations.
InsideStart = 5This instance is inside the other range and both have the same start, but different end locations.
OverlapsAfter = 12This instance starts inside the other range and overlaps its end.
OverlapsBefore = 9This instance starts before the other range and overlaps its start.
This instance and the other range are in different bodies.