Tool to merge partial classes into one class?

c#, partial-classes, visual-studio, visual-studio-2010

Solution

Resharper has a "Copy Type" feature that allows to copy all parts of a type into a single file: http://www.jetbrains.com/resharper/documentation/reviewers_guide.html#refactorings

There is a manual effort involved, though, since you have to open at least one file for each file and invoke the functionality.

Problem

Is there a tool to merge partial classes into one non-partial class? I cannot use Reflector, since I need variable names, etc. to match. EDIT: I have hundreds of partial classes I want to merge, so cut-paste is not realistic.

Original source