hello everyone,
I have a string that i need to convert into a secure string.
How do I do it?
thanks
hello everyone,
I have a string that i need to convert into a secure string.
How do I do it?
thanks
Create a variable os secure string type and assign the below value. strYourStringPassword is your password in string
(new System.Net.NetworkCredential(“”, “strYourStringPassword”)).SecurePassword
it worked
thank you