I would like to have a forced line break without having a break in a column, similar to how the //* gives a line break while preventing the page from breaking. Specifically, I would like to be able to do this within the multicol environment. Does anyone know how to do this? Here is a MWE.
\documentclass{article}
\usepackage{multicol}
\usepackage[top=5in,bottom=5in,right=.5in,left=.5in]{geometry}
\begin{document}
\begin{multicols}{2}
\noindent
Line 1\\
Line 2\\
I would like to have this line 3 in the same col as line 2\\
Line 4
\end{multicols}
\end{document}
EDIT: This would be used for a "living" document. Basically, I would want to be able to put this "line break" command anywhere that I would want a line break, and have TeX "know" not to break a column where this command falls, but instead, to extend the length of the column further, perhaps even into the margin at the end. Does anyone know how to do this?

\parbox{\columnwidth}{\strut ... \\ ... \\ ... \strut}? – Werner Oct 06 '13 at 20:50\strutensures that the height/depth of a line is properly aligned; something that is problematic when you box text. See How to keep a constant\baselineskipwhen usingminipages (or\parboxes)?. – Werner Oct 07 '13 at 02:46