我需要在 C# 的同一对象类型中使用 4 个不同的属性来实现排序。
假设学生对象有姓名、身份证、生日和年级。我如何重用代码对它们中的每一个进行排序。我已经设法按名称排序,我如何重用代码?
private void btnSortName_Click(object sender, EventArgs e)
{
Student obj = new Student();
List<Student> listOfStudents = obj.List();
int student_count = listOfStudents.Count();
int first_index, last_index;
for (first_index = 1; first_index < student_count; first_index++)
{
last_index = first_index - 1;
Student first = listOfStudents[first_index];
Student last = listOfStudents[last_index];
while (last_index >= 0 && DateTime.Compare(last.RDate, first.RDate) > 0)
{
listOfStudents[last_index + 1] = listOfStudents[last_index];
last_index = last_index - 1;
}
listOfStudents[last_index + 1] = first;
}
DataTable dt = Utility.ConvertToDataTable(listOfStudents);
dataGridStudents.DataSource = dt;
btnSortName.Visible = false;
btnSortName.Enabled = false;
btnSortNameD.Visible = true;
btnSortNameD.Enabled = true;
}
我已经尝试通过创建插入排序方法并将属性作为参数传递并返回该对象的列表来做到这一点,但这两个都显示错误:
public List<Student> insertion_Sort(ref String data, Boolean asc)
{
Student obj = new Student();
List<Student> listOfStudents = obj.List();
int student_count = listOfStudents.Count();
int first_index, last_index;
for (first_index = 1; first_index < student_count; first_index++)
{
last_index = first_index - 1;
Student first = listOfStudents[first_index];
Student last = listOfStudents[last_index];
if (asc){
while (last_index >= 0 && DateTime.Compare(last.data, first.data) > 0)
{
listOfStudents[last_index + 1] = listOfStudents[last_index];
last_index = last_index - 1;
}
listOfStudents[last_index + 1] = first;
}
else
{
while (last_index >= 0 && DateTime.Compare(last.data, first.data) < 0)
{
listOfStudents[last_index + 1] = listOfStudents[last_index];
last_index = last_index - 1;
}
listOfStudents[last_index + 1] = first;
}
}
return listOfStudents;
}
我该如何解决这些问题?