Rhino.Tools.Debugger.Dim.SourceInfo.RemoveAllBreakpoints C# (CSharp) Method

RemoveAllBreakpoints() public method

Removes all breakpoints from the script.
Removes all breakpoints from the script.
public RemoveAllBreakpoints ( ) : void
return void
			public virtual void RemoveAllBreakpoints()
			{
				lock (breakpoints)
				{
					for (int line = 0; line != breakpoints.Length; ++line)
					{
						breakpoints[line] = false;
					}
				}
			}
		}