private void _CopyToClipboard(FoundTextLine foundTextLine) { if (foundTextLine != null) { Clipboard.SetText(foundTextLine.Line); } }
public override bool Equals(object obj) { FoundTextLine foundTextLine = obj as FoundTextLine; return(foundTextLine != null && foundTextLine.LineNumber == this.LineNumber && foundTextLine.Line == this.Line); }