我的应用程序中有以下代码:
catch (SmtpException oSMTPException)
{
string sFailedEmailIds = string.Empty;
string[] sMailids = null;
((System.Net.Mail.SmtpFailedRecipientsException)(oSMTPException)).
InnerExceptions[0].FailedRecipient
}
我有许多邮件 ID 尚未发送到这些邮件 ID。我想将详细信息存储在一个字符串sFailedEmailIds
中。
我怎样才能做到这一点?