class Program
    {
        public struct scoreInformation
        {
            public int number;
            public int time;
            public int counter;
        }
        static void Main(string[] args)
        {
            scoreInformation[] scoreStatistic = new scoreInformation[]
            {
                new scoreInformation(){ number=1, time=2, counter=3 },
                new scoreInformation(){ number=2, time=2, counter=3 },
                new scoreInformation(){ number=3, time=2, counter=3 },
            };            var result = scoreStatistic.FirstOrDefault(x => x.number == 1);
            Console.WriteLine(result.number);//输出1
        }
    }