public NewEventHandlerCompletionItem(string completionTitle,
                                                 string methodName,
                                                 int selectionBeginOffset, int selectionLength,
                                                 string documentation, ResolveResult resolveResult,
                                                 string methodCode)
                : base(completionTitle)
            {
                _methodName           = methodName;
                _selectionBeginOffset = selectionBeginOffset;
                _selectionLength      = selectionLength;
                _resolveResult        = resolveResult;
                _methodCode           = methodCode;

                Description = new SimpleDescription(documentation);
            }
 public DelegateCompletionItem(string text, int cursorOffset, string documentation)
     : base(text)
 {
     _cursorOffset = cursorOffset;
     Description   = new SimpleDescription(documentation);
 }