Licence key Generate
-
hi...... i want to protect my application with licence key....in Xaml can anyone help mee.... thanquuu...
Its pretty simple, make some random characters using a random number generator and specify how many you want? Random ran = new Random(); string mySerial = string.Empty; int serialLength = 12; for (int i = 0; i < serialLength;i++) { int ascii = ran.Next(70,90); char myChar = (char)ascii; mySerial += myChar.ToString(); } A bit like that, next time lookup the problem.
-
hi...... i want to protect my application with licence key....in Xaml can anyone help mee.... thanquuu...
Why do you say you want it in XAML? XAML is a markup language - pure and simple.
"WPF has many lovers. It's a veritable porn star!" - Josh Smith
As Braveheart once said, "You can take our freedom but you'll never take our Hobnobs!" - Martin Hughes.