I am able to save single attachments using below code
var mimePart = (attachment as MimePart);
using (var fileStream = new FileStream(filePath, FileMode.Create, FileAccess.Write))
{
mimePart.ContentObject.DecodeTo(fileStream);
}
Here each attachment is saved as separate file, But I want to save multiple attachments as single pdf file I am not able to find any method for merging in MimePart.