なぜstudentinformation
にアクセスできないのか分かりません。getstudentinformation
です。ここでは、コードは次のようになります。Returning not working
static void Main(string[] args)
{
getstudentinformation();
string firstname = studentinformation[0];
}
static Array getstudentinformation()
{
Console.WriteLine("enter the student's first name: ");
string firstname = Console.ReadLine();
Console.WriteLine("enter the student's last name");
string lastname = Console.ReadLine();
Console.WriteLine("enter student's gender");
string gender = Console.ReadLine();
string[] studentinformation = { firstname, lastname, gender };
return studentinformation;
}
Visual Studioは、配列を認識しないと、私はコードをビルドしようとすると、studentinformationを認識しないこのエラーがあります。
あなたのコードは動作します。非常にきれいではありませんが、コンパイルして配列を返します。どのような正確なエラーメッセージが表示されますか? –