Jared and phoog are both correct. A third way to do the same thing, just to round it out, is:
Func<int, string> func = i => i.ToString();
Function<int, string> function = func.Invoke;
That is, the new delegate is a delegate to the invoke method of the first delegate, which has the correct signature.
That one has to do this is vexing in the extreme. Were we designing the runtime from scratch today, knowing what we now known about how people use delegate types, I think it likely that there would either be one built in delegate type for each signature (much as there is one "single dimensional array of integers" type), or that there would be "structural identity" amongst delegate types. Next time you design the type system for a virtual machine, keep that in mind.