Answers for "c# how to get a securestring from string"

C#
0

c# how to get a securestring from string

SecureString theSecureString = new NetworkCredential("", "myPass").SecurePassword;
Posted by: Guest on August-04-2020
0

c# how to get a securestring from string

var s = new SecureString();
s.AppendChar('d');
s.AppendChar('u');
s.AppendChar('m');
s.AppendChar('b');
s.AppendChar('p');
s.AppendChar('a');
s.AppendChar('s');
s.AppendChar('s');
s.AppendChar('w');
s.AppendChar('d');
Posted by: Guest on August-04-2020

Code answers related to "c# how to get a securestring from string"

C# Answers by Framework

Browse Popular Code Answers by Language