我正在关注一些Microsoft教程并获得这样的代码,但它不起作用。
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)
{
int[] liczby = new int liczby[] { 5, 6, 7, 8 ,9, 10 };
Console.WriteLine(liczby[5]);
Console.ReadKey();
}
}
}
答案 0 :(得分:3)
将实例化int数组的行更改为:
int[] liczby = new int[] { 5, 6, 7, 8 ,9, 10 };
这只是一个语法错误。
答案 1 :(得分:0)
int[] liczby = new int liczby[] { 5, 6, 7, 8 ,9, 10 };
此行有语法错误,请替换为:
int[] liczby = new int[] { 5, 6, 7, 8 ,9, 10 };