0

我有下一个程序。如果您能向我解释一下如何在教室中找到例如我想找到一个教室,我该怎么做?例如,我想添加一门我已经添加到教室的课程,而且我在 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;



         }


            }
        }
    }
}
4

3 回答 3

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;
}    
于 2013-08-14T15:39:32.290 回答
1

如果您想了解 C# 中列表的 api,我会推荐此链接。但本质上,可以使用 Where 方法和谓词(该方法返回一个布尔值,指示元素是否满足特定条件)轻松完成搜索。考虑:

var matches = courses.Where( e => e.CourseNumber == providedCourseNumber );

此代码段内容为:matches 将是课程的 IEnumerable,其 CourseNumber 等同于提供的课程编号。

于 2013-08-14T15:41:43.563 回答
1

你可以这样做

List<ClassRoom> result = yourlist.Where(x=>x.CourseName=="yourdesidredcourse").ToList();
于 2013-08-14T15:38:58.443 回答