Praeclarum.StringRange.Intersects C# (CSharp) Метод

Intersects() публичный Метод

public Intersects ( StringRange other ) : bool
other StringRange
Результат bool
		public bool Intersects (StringRange other)
		{
			if (other.Location >= Location + Length)
				return false;
			if (Location >= other.Location + other.Length)
				return false;
			return true;
		}