Copying contents of Word doc and paste into another
问题 How do i programatically copy the contents of one word document and paste it to another word document using C#? I basically want to copy a personal profile (which is the contents of one word doc) and then insert it into a report. Any help would be greatly appreciated Thanks 回答1: You can do this: object docStart = worddocpromo.Content.End - 1; object docEnd = worddocpromo.Content.End; object start = SubDoc.Content.Start; object end = SubDoc.Content.End; SubDoc.Range(ref start, ref end).Copy();