ARCed.Scintilla.Annotation.CheckInvalid C# (CSharp) Method

CheckInvalid() private method

private CheckInvalid ( ) : void
return void
        private void CheckInvalid()
        {
            // Are we in a state where we can no longer accurately
            // represent the annotation we were originally created for?
            if (this._lineIndex == -1)
                throw new InvalidOperationException(Resources.Exception_InvalidAnnotation);
        }