Catrobat.IDE.Core.CatrobatObjects.Range.Contains C# (CSharp) Method

Contains() public method

public Contains ( Range other ) : bool
other Range
return bool
        public bool Contains(Range other)
        {
            return this.Start <= other.Start && other.End <= this.End;
        }