1 Star 0 Fork 0

徐艳玲/ch4

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
top3.cs 720 Bytes
一键复制 编辑 原始数据 按行查看 历史
徐艳玲 提交于 2023-10-18 18:16 . 添加项目文件。
public delegate bool GradePrint(Student s);
public class top3
{
public GradePrint GP { set; get; }
}
public class GradeReport
{
public static bool GradeReportOrderByTerm(Student s)
{
// 实现成绩单按学期排序的逻辑
return true;
}
}
public class top
{
public static void Main()
{
Student student = new Student();
student.GP = GradeReport.GradeReportOrderByTerm;
// 调用委托打印成绩数据
bool result = student.GP(student);
if (result)
{
Console.WriteLine("成绩单打印成功!");
}
else
{
Console.WriteLine("成绩单打印失败!");
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xu-yanling_989265/ch4.git
git@gitee.com:xu-yanling_989265/ch4.git
xu-yanling_989265
ch4
ch4
master

搜索帮助