Another way is with the NetworkCredential type:
(new System.Net.NetworkCredential(“”, “myString”)).SecurePassword
And to convert from SecureString to String, you can use:
(new System.Net.NetworkCredential(“”, mySecureString,)).Password
Another way is with the NetworkCredential type:
(new System.Net.NetworkCredential(“”, “myString”)).SecurePassword
And to convert from SecureString to String, you can use:
(new System.Net.NetworkCredential(“”, mySecureString,)).Password