From: David Ching on
"MrAsm" <mrasm(a)usa.com> wrote in message
news:hrt1t2922vl1tg0p4sf9q1juakod2i1087(a)4ax.com...
> I thought that C# and .NET code was just-in-time compiled, so I tought
> that startup times would be longer for bigger apps (when more code
> must be compiled), like Office or Visual Studio...
>

AFAIK, it's JIT compiled only the first time, and after that, the JITted
image is stored in the GAC (Global Assembly Cache) for next time.

-- David (MVP)