Determines whether this range contains the character index. The index. true if range contains the specified character index; otherwise, false .
(int index)
| 33 | /// <param name="index">The index.</param> |
| 34 | /// <returns><c>true</c> if range contains the specified character index; otherwise, <c>false</c>.</returns> |
| 35 | public bool Contains(int index) => index >= StartIndex && index < EndIndex; |
| 36 | |
| 37 | /// <summary> |
| 38 | /// Determines whether this range intersects with the other range. |
no outgoing calls
no test coverage detected