using System; using System.Web; using framework_library; class EncReset { static void Main(string[] args) { string resetCode = args.Length > 0 ? args[0] : "ieoohp"; var enc = new encryption("r3s3t"); string encCode = HttpUtility.UrlEncode(enc.encryptValue(resetCode)); Console.WriteLine(encCode); } }