Rhino.Tools.Debugger.Dim.SourceInfo.Breakpoint C# (CSharp) Méthode

Breakpoint() public méthode

Returns whether there is a breakpoint set on the given line.
Returns whether there is a breakpoint set on the given line.
public Breakpoint ( int line ) : bool
line int
Résultat bool
			public virtual bool Breakpoint(int line)
			{
				if (!BreakableLine(line))
				{
					throw new ArgumentException(line.ToString());
				}
				return line < this.breakpoints.Length && this.breakpoints[line];
			}

Same methods

Dim.SourceInfo::Breakpoint ( int line, bool value ) : bool