Extend subscription time π
Here you will find all the documentation to extend the customer's subscription time! π₯Ά
Console.Write(" Username: ");
string username = Console.ReadLine();Γ§
Console.Write(" Password: ");
string password = Console.ReadLine();
Console.Write(" License: "); // Here is the new license that will extend the user's time
string license = Console.ReadLine();
if (exampleApp.ExtendTime(username, password, license))
{
Console.WriteLine("Your user's time has been extended successfully!");
}Last updated
Was this helpful?