Antlr4.Runtime.Misc.Interval.StartsAfter C# (CSharp) 메소드

StartsAfter() 공개 메소드

Does this.a start after other.b? May or may not be disjoint
public StartsAfter ( Antlr4 other ) : bool
other Antlr4
리턴 bool
        public bool StartsAfter(Antlr4.Runtime.Misc.Interval other)
        {
            return this.a > other.a;
        }