How to convert Secure String to String

How to convert .SecureString to String ?

@rpalearner007

You can do as below
STRINGVARIABLE = new System.Net.NetworkCredential(string.Empty, secureStr).Password

Mark as solution if this helps you

Thanks

@rpalearner007
Use a assign activity and please pass the following :
String plainStr = new System.Net.NetworkCredential(string.Empty, secureStr).Password

By doing so, secure string will be converted to string.