When an enumitem list is resumed there is some additional vertical space that is applied as can be seen in the difference in the vertical alignment of the 2nd item:

I assume this is related to topsep. So, I could adjust the topsep parameter manually each time I resume a list, but wondering if there is a way to define the MyEnumerate list so that the values of topsep (and perhaps any others things that need tweaking) are different for resumed lists vs. the initial (non-resumed) list.
Also, what is the correct mathematical computation of the topsep value required in terms of the other enumitem spacing parameters?
References:
Code:
\documentclass{article}
\usepackage{enumitem}
\newlist{MyEnumerate}{enumerate}{3}
\setlist[MyEnumerate]{label=(\arabic)}
\begin{document}
\begin{minipage}[t]{0.45\linewidth}
My List of items:
\begin{MyEnumerate}
\item First Item.
\item Second Item.
\item Third Item.
\item Fourth Item.
\end{MyEnumerate}%
End of list.
\end{minipage}%
\hfill%
\begin{minipage}[t]{0.45\linewidth}
My List of items:
\begin{MyEnumerate}[series=foo]
\item First Item.
\end{MyEnumerate}
\begin{MyEnumerate}[resume*=foo]
\item Second Item (resumed).
\end{MyEnumerate}%
\begin{MyEnumerate}[resume*=foo]
\item Third Item (resumed).
\end{MyEnumerate}%
\begin{MyEnumerate}[resume*=foo]
\item Fourth Item (resumed).
\end{MyEnumerate}%
End of resumed list.
\end{minipage}%
\end{document}

\topsep+\parskip. If you place\vspace{\dimexpr-\topsep-\parskip}as the first thing insideMyEnumerate, the two align vertically. – Werner Jun 28 '14 at 18:11resume? – Peter Grill Jun 28 '14 at 18:17resumestuff – cmhughes Jun 28 '14 at 18:18itemsep=\dimexpr\topsep+\parskip(not quite right), but I'd prefer to leave the new list spacing as is, just tweak the resumed list spacing to match. – Peter Grill Jun 28 '14 at 18:36resumekey to also adjust thetopsepkey, I think. – Werner Jun 28 '14 at 19:57Resumeinstead so that otherresumes are not affected. Don't think I need that, but just in case. – Peter Grill Jun 28 '14 at 20:12resumefeature. I removed that portion of the MWE as it did not seem to be needed. – Peter Grill Jun 29 '14 at 00:57Resumedoesn't show up. – Peter Grill Jun 29 '14 at 01:22