I want to create a HashPasswordForStoringInConfigFile in a console application. This is done using the following class in a web application.
System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(str_value, "md5")
But the System.Web.Security class is not available in the console application Can someone tell me an alternative method for this Or Can I import the System.Web.Security class in the console application Any help would be appreciated
Thanks Suvidha
source share