本文介绍了创建基于命令(即控制台)的应用程序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
应用程序要求输入用户名和密码。该应用程序匹配已保存的登录名中的登录名和密码,以及在名为login.txt的文本文件中给出的密码。如果用户名和密码正确,那么应用程序{做某事......}
我不想用包含,如果我在文本文件中用这种格式写的,用户名:密码,如何替换它而不是包含???
使用(StreamReader sr = File.OpenText( E: \\login.txt))
{
string [] lines = File.ReadAllLines( E:\\login.txt);
{
if (lines.Contains(Username)&& lines.Contains(Password))
{
.......
}
解决方案
the application ask for user name and password. The application matches the login name and password from the already saved login names and their password given in a text file called "login.txt". If the user name and password are correct then the application { do something ....}
I don't want to use contain, If I wrote in the textfile in this format, username:password, how can replace that instead of contain ???
using (StreamReader sr = File.OpenText("E:\\login.txt")) { string[] lines = File.ReadAllLines("E:\\login.txt"); { if (lines.Contains(Username) && lines.Contains(Password)) { ....... }
解决方案
这篇关于创建基于命令(即控制台)的应用程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!