Catrobat.IDE.Core.CatrobatObjects.Range.Contains C# (CSharp) Метод

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

public Contains ( Range other ) : bool
other Range
Результат bool
        public bool Contains(Range other)
        {
            return this.Start <= other.Start && other.End <= this.End;
        }