Monday

c# initialize new hashtable

Hashtable ht = new Hashtable() {
{"key1", "value1"},
{"key2", "value2"}
};

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 ...