Catrobat.IDE.Core.CatrobatObjects.Range.Contains C# (CSharp) Méthode

Contains() public méthode

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