ファイルからテキストを読み取るC#コンソールアプリケーションコードがここにあります。 ユーザーが値を入力すると、その値を含む行をファイルから検索します。私の場合は は、部屋番号を尋ねてきますコンソールは、コンソールは、「それが書き込まれますように私はそれを作るにはどうすればよい「」数はとのスプリットをthatsの部屋のためにC#コンソールアプリケーションがwhileループで無効な入力を表示しています
class Program
{
static void Main(string[] args)
{
int counter = 0;
string line;
string roomNumber;
Console.WriteLine("Enter room number");
roomNumber = Console.ReadLine();
// Read the file and display it line by line.
System.IO.StreamReader file = new
System.IO.StreamReader("room.txt");
while ((line = file.ReadLine()) != null)
{
string[] words = line.Split(',');
if (roomNumber == words[1])
{
Console.WriteLine(line);
}
counter++;
}
file.Close();
// Suspend the screen.
Console.ReadLine();
}
}
}
をroom.txtを検索します無効な部屋番号 "を入力し、部屋番号を尋ねるまでループバックします。
これは宿題の割り当てのように非常によく見えます... –