Малко help за това?
Здравейте, беше ми скучно и реших да се пробвам да направя нещо като password storer, който пази пароли на различни акаунти. Самото нещо си работи без проблем като го пусна от Visual Studio (с CTRL + F5), но ако го пусна от самата апликация, стига до частта, където трябва да напишеш акаунта, който искаш да провериш, и конзолата просто се изключва.
Ето го кода:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Please insert your name:");
string firstName = Console.ReadLine();
if (firstName.Equals ("Yulian"))
{
Console.Clear();
}
else
{
Console.WriteLine("The first name -{0}- is not registred in the system.", firstName);
Environment.Exit(0);
}
Console.WriteLine("Please insert your surname:");
string surName = Console.ReadLine();
if (surName.Equals ("Ivanov"))
{
Console.Clear();
}
else
{
Console.WriteLine("The surname -{0}- is not registred in the system.", surName);
Environment.Exit(0);
}
Console.WriteLine("Please insert your password:");
string Password = Console.ReadLine();
if (Password.Equals ("test"))
{
Console.Clear();
Console.WriteLine("Welcome to the system, type in an account you need the information for!");
Console.WriteLine(' ');
}
else
{
Console.WriteLine("The password is invalid!");
Environment.Exit(0);
}
string Account = Console.ReadLine();
if (Account.Contains("Steam"))
{
Console.Clear();
Console.WriteLine("Username: test");
Console.WriteLine(' ');
Console.WriteLine("Password: test");
Console.WriteLine(' ');
Console.WriteLine("Associated Email: test");
Console.WriteLine(' ');
Console.WriteLine("See you later!");
Console.WriteLine(' ');
}
else if (Account.Contains("Google"))
{
Console.Clear();
Console.WriteLine("Username: Yulian Ivanov");
Console.WriteLine(' ');
Console.WriteLine(@"Password: test");
Console.WriteLine(' ');
Console.WriteLine("Associated Email: test");
Console.WriteLine(' ');
Console.WriteLine("See you later!");
Console.WriteLine(' ');
}
else
{
Environment.Exit(0);
}
}
}
}
Ще се радвам, ако някой открие проблема.
Благодаря Ви, предварително! :)
Пробвах го и стана! МС пич!
мерси много