I need to convert ExcelPackage to file or memory stream .csv I have no idea how can i do it . I've done a lot of research,but I did not find anything that suited me.
using (var package = new ExcelPackage(newFile))
{
//data...
package.Save();
return // i need convert package to
//file or memory stream with extension csv
}
}