我有下一个节目。 我想如果你能向我解释如何在课堂上找到我想要找到的教室,我该怎么做? 例如,我想添加一个我已经添加到课堂中的课程,我在c#和列表中很新(我来自C)所以我非常感谢你的帮助
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Maman15cs
{
public class ClassRoom
{
public string ClassNumber;
public int NumberofPlaces;
public int[,] DayandHour = new int[6,8];
public static ClassRoom AddClassRoom()
{
var classRoom = new ClassRoom();
Console.WriteLine("Enter the Class number, the Number of places\n");
classRoom.ClassNumber = Console.ReadLine().ToString();
classRoom.NumberofPlaces = int.Parse(Console.ReadLine());
Console.WriteLine("Good, now enter the Day(1, 2, 3, 4, 5, 6) and after that you put the courses' number that are that day (In Order)");
for (int i = 0; i < 6; i++)
{
for (int j = 0; j < 8; j++)
{
classRoom.DayandHour[i,j] = int.Parse(Console.ReadLine());
}
}
return classRoom;
}
public static ClassRoom AddCourseInClassroom(ClassRoom classroom)
{
for (int i = 0; i < 6; i++)
{
for (int j = 0; j < 8; j++)
{
}
}
}
}
public class Course
{
public string CourseName;
public int CourseNumber;
public int StudentsNumber;
public string TeacherName;
public string ClassNumber;
public static Course AddCourse()
{
Course newCourse = new Course();
Console.WriteLine("Enter the Course's name, course's number, students number, teacher's name, and class' number\n");
newCourse.CourseName = Console.ReadLine().ToString();
newCourse.CourseNumber = int.Parse(Console.ReadLine());
newCourse.StudentsNumber = int.Parse(Console.ReadLine());
newCourse.TeacherName = Console.ReadLine().ToString();
newCourse.ClassNumber = Console.ReadLine().ToString();
return newCourse;
}
}
public class Program
{
void Main()
{
var course = new List<Course>();
var classroom = new List<ClassRoom>();
int actionChoice;
while(true){
Console.WriteLine("What do you want to do? (Enter number): \n 1) Add a new Course \n 2)Add a new class room \n 3)Add an existing course to an existing classroom \n 4)Read the information of a specific classroom \n 5)Read the information of all the classrooms \n 6)Read the information of a specific course \n 7)Delete a specific course \n 8)Update courses in the Time Table \n 9)Exit the program \n");
actionChoice = int.Parse(Console.ReadLine());
switch (actionChoice)
{
case 1: //Add a new Course
var new_course = Course.AddCourse();
course.Add(new_course);
break;
case 2:
var new_classRoom = ClassRoom.AddClassRoom();
classroom.Add(new_classRoom);
break;
case 3:
Console.WriteLine("Enter the course's number and the classroom's number");
var courseNumber = int.Parse(Console.ReadLine());
var classroomNumber = int.Parse(Console.ReadLine());
course.Find(courseNumber);
break;
case 9:
return;
}
}
}
}
}
答案 0 :(得分:2)
如果你可以使用LINQ,这很容易:
var foundCourse = course.FirstOrDefault(c => c.CourseNumber == courseNumber)
if (foundCourse != null)
{
// You're now interacting with the course we found
}
如果你不能使用LINQ,请告诉我,我将解释一种效率较低/干净的方式。
编辑以显示不同的方式: 对于更简单的方法(没有LINQ),您可以在for循环或foreach循环中执行此操作。例如:
private Course FindCourse(int courseNumber, List<Course> courses)
{
foreach(Course course in courses)
{
if(course.CourseNumber == courseNumber)
return course;
}
// Not found, return null
return null;
}
答案 1 :(得分:1)
你可以这样做
List<ClassRoom> result = yourlist.Where(x=>x.CourseName=="yourdesidredcourse").ToList();
答案 2 :(得分:1)
I would recommend this link如果您想了解C#中列表的api。但实质上,可以使用Where方法和谓词(这是一种返回bool的方法,可以轻松地进行搜索,指示元素是否符合特定条件)。考虑:
var matches = courses.Where( e => e.CourseNumber == providedCourseNumber );
此代码段显示:匹配将是一个IEnumerable课程,其CourseNumber等同于providedCourseNumber。