Wednesday

c# removing non printable characters in xml json

s = Regex.Replace(s, @"\p{C}+", string.Empty);

No comments:

test smtp server with powershell

Send-MailMessage -SMTPServer smtp.domain.com -To [email protected] -From [email protected] -Subject "This is a test email" -Body ...