var queue = new Queue<ExchangeEmailInformation>(newMails);
How can I convert the above queue to List.
You can use Enumerable.ToList
var list = queue.ToList();
Remember to include using System.Linq;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With