Student类:

 1 using System;
 2 using System.Collections.Generic;
 3 using System.Linq;
 4 using System.Text;
 5 using System.Threading.Tasks;
 6 
 7 namespace BindingLINQ
 8 {
 9     public class Student
10     {
11         public int Id { get; set; }
12         public string Name { get; set; }
13         public int Age { get; set; }
14     }
15 }
View Code

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-11
  • 2022-02-15
  • 2022-12-23
  • 2021-06-03
猜你喜欢
  • 2021-09-25
  • 2022-12-23
  • 2021-10-01
  • 2022-01-19
  • 2022-01-15
  • 2021-09-24
  • 2022-12-23
相关资源
相似解决方案