在课堂上获取数据

本文关键字:数据 获取 课堂 | 更新日期: 2023-09-27 18:32:06

我有班的学生:

public class Student
    {
        public string Name { get; set; }
        public string Age { get; set; }
        public Student()
        {
        }
        public List<Student> getData()
        {
            List<Student> st = new List<Student> 
            {
                new Student{Name="Pham Nguyen",Age = "22"},
                new Student{Name="Phi Diep",Age = "22"},
                new Student{Name="Khang Tran",Age = "28"},
                new Student{Name="Trong Khoa",Age = "28"},
                new Student{Name="Quan Huy",Age = "28"},
                new Student{Name="Huy Chau",Age = "28"},
                new Student{Name="Hien Nguyen",Age = "28"},
                new Student{Name="Minh Sang",Age = "28"},
            };
            return st;
        }        
    }

如何在此类中获取数据?(我的意思是 - 示例:我想取名称="Minh Sang",年龄="28"来显示)。

对不起这个问题。但我不知道在哪里可以找到它。

谢谢大家

在课堂上获取数据

您可以使用 linq:

Student st = new Student();
var getStudent = from a in st.getData()
                      where a.Age == "28" & a.Name == "Minh Sang"
                      select a;
MessageBox.Show(getStudent.First().Age);
MessageBox.Show(getStudent.First().Name);

编辑 1:将这些方法添加到类中:

public Student getStudent(int age, string name)
{
    return this.getData().Find(s => Convert.ToInt32(s.Age) == age && s.Name.Equals(name));
}
public Student getByIndex(int index)
{
    Student s = null;
    // maxIndex will be: 7
    // your array goes from 0 to 7
    int maxIndex = this.getData().Count() - 1;
    // If your index does not exceed the elements of the array:
    if (index <= maxIndex)
        s  = this.getData()[index];
    return s;
}
  • 如果您需要在将来的><进行评估,我将年龄转换为int

编辑2:然后调用如下方法:

    Student st = new Student();
    // s1 and s2 will return null if no result found.
    Student s1 = st.getStudent(28, "Minh Sang");
    Student s2 = st.getByIndex(7);
    if (s1 != null)
        Console.WriteLine(s1.Age);
        Console.WriteLine(s1.Name);
    if (s2 != null)
        Console.WriteLine(s2.Age);
        Console.WriteLine(s2.Name);

查看 list.Find 方法:

http://msdn.microsoft.com/en-us/library/x0b5b5bc.aspx

接下来尝试实现一个新方法:

public Student GetStudent(string name, int age)

调用 getData() 获取学生列表。

使用 foreach 循环遍历列表。

在循环中,打印出学生的姓名和年龄。

也许您正在寻找调试器显示属性以在调试器中显示它?

[DebuggerDisplay("Name = {name}, Age={age}")]
public class Student {....}

因此,当您将鼠标悬停在学生类型的项目上时,它将以您想要的方式显示......