Artyom Lazovikov Asked:2020-11-21 17:29:20 +0000 UTC2020-11-21 17:29:20 +0000 UTC 2020-11-21 17:29:20 +0000 UTC 我们需要一个资源来描述处理 c# 类实例的算法 772 class Student { private string name; private string lastname; private int age; private int course; public Student(string a, string b, int c, int d) { this.name = a; this.lastname = b; this.age = c; this.course = d; } } 我想出了输出信息的方法。现在的问题是,类实例的列表在哪里,以便后续使用它们?理想情况下,扔掉一个我可以阅读的资源。 c# 1 个回答 Voted Best Answer Artyom Lazovikov 2020-11-22T00:56:49Z2020-11-22T00:56:49Z 我在讲英语的 Stackoverflow 上发现了一个类似的问题,解决方案很有效,如果你懂英语,它可能会派上用场。 https://stackoverflow.com/questions/18096226/c-sharp-class-object-filtering
我在讲英语的 Stackoverflow 上发现了一个类似的问题,解决方案很有效,如果你懂英语,它可能会派上用场。
https://stackoverflow.com/questions/18096226/c-sharp-class-object-filtering