このコードをOnNavigatedTo
関数に追加しました:
int counter = 0;
string line;
string path = "Streams\\Usernames.txt";
// Read the file and display it line by line.
System.IO.StreamReader file =
new System.IO.StreamReader(path);
while ((line = file.ReadLine()) != null)
{
Lbx_Usernames.Items.Add(line);
counter++;
}
しかし、私はこのエラーを受け取り続けます:
「文字列」から「System.IO.Steam」に変換できません