Init New list of (SecureString)

Hi guys,
Stupid question but how can we init new list (of SecureString) ? I tried this format but doesn’t work :cry:

What errors are you getting? I tred New List(Of SecureString) and I had no errors

3 Likes

Type “SecureString” is not defined

You need to use the full namespace or import it under the “Import” tab next to the Variables section.
The namespace is System.Security

ex: New List(Of System.Security.SecureString)

If you import it, then you can use what you were using that gave you the error.

Regards.

2 Likes

ty for your help guys!

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.