• 大小: 89.26 KB
    文件类型: .rar
    金币: 2
    下载: 1 次
    发布日期: 2024-08-01
  • 语言: C#
  • 标签: C#  控制台  

资源简介

基于项目目的和需求,我们拟采用基于对象的编程模式进行项目开发。整个系统采用C/S方式实现,数据存储采用文件形式,开发工具选用VS2005。<br>该系统的基本框架如下:<br>1、用户登录和注册<br>2、学生基本信息管理<br>3、课程信息管理<br>4、学生成绩管理(B/S)<br>本系统采用控制台应用程序<br>

资源截图

代码片段和文件信息

//--------------------------------------------------------------------
/*
 * 程序名称:StudentSystemDemo
 * 功能概述:该系统提供对学生基本信息、课程基本信息、学生成绩基本信息的管理,
 *           可以实现对信息的查询、添加、修改和删除。该系统采用文件的方式来
 *           储存和管理数据信息。
 * 制作:
 * 单位:
 * 时间:07-4-15
*/
//--------------------------------------------------------------------

using System;
using System.Collections;
using System.Text;

namespace StudentSystemDemo
{
    /// 
    /// 系统启动类
    /// 

    public class EntryPoint
    {
        /// 
        /// 程序入口点
        /// 

        public static void Main()
        {
            FrmWelcome.Show();
            while (true)
            {
                FrmLogin frmLogin = new FrmLogin();
                frmLogin.Show();
                switch (frmLogin.Result)
                {
                    case LoginResult.LoginOut:
                        return;
                    case LoginResult.LoginValidity:
                        FrmMain frmMain = new FrmMain();
                        frmMain.Show();
                        return;
                    case LoginResult.LoginInvalidity:
                        break;
                    default :
                        Console.WriteLine(“无效输入!“);
                        break;
                }
            }
          
        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        121  2007-06-28 13:04  StudentSystemDemo\bin\Debug\Courses.txt

     文件         89  2007-06-28 12:58  StudentSystemDemo\bin\Debug\students.txt

     文件      40960  2007-08-30 10:26  StudentSystemDemo\bin\Debug\StudentSystemDemo.exe

     文件     114176  2007-08-30 10:26  StudentSystemDemo\bin\Debug\StudentSystemDemo.pdb

     文件       5632  2007-04-23 08:09  StudentSystemDemo\bin\Debug\StudentSystemDemo.vshost.exe

     文件        132  2007-06-28 13:03  StudentSystemDemo\bin\Debug\StuScores.txt

     目录          0  2007-06-21 19:32  StudentSystemDemo\bin\Debug

     目录          0  2007-06-25 09:19  StudentSystemDemo\bin

     文件       1489  2007-12-16 13:42  StudentSystemDemo\EntryPoint.cs

     目录          0  2007-04-25 09:41  StudentSystemDemo\obj\Debug\Refactor

     文件      40960  2007-08-30 10:26  StudentSystemDemo\obj\Debug\StudentSystemDemo.exe

     文件     114176  2007-08-30 10:26  StudentSystemDemo\obj\Debug\StudentSystemDemo.pdb

     目录          0  2007-04-25 09:41  StudentSystemDemo\obj\Debug\TempPE

     目录          0  2007-08-30 10:26  StudentSystemDemo\obj\Debug

     文件        132  2007-12-16 13:43  StudentSystemDemo\obj\StudentSystemDemo.csproj.FileList.txt

     目录          0  2007-04-25 09:41  StudentSystemDemo\obj

     文件       1181  2007-04-23 08:09  StudentSystemDemo\Properties\AssemblyInfo.cs

     目录          0  2007-04-25 09:42  StudentSystemDemo\Properties

     文件       2385  2007-06-25 09:19  StudentSystemDemo\StudentSystemDemo.csproj

     文件      10634  2007-06-21 22:05  StudentSystemDemo\业务类\Course.cs

     文件      11930  2007-06-28 12:53  StudentSystemDemo\业务类\Student.cs

     文件       5815  2007-12-16 13:44  StudentSystemDemo\业务类\StudentScore.cs

     目录          0  2007-12-16 13:44  StudentSystemDemo\业务类

     文件       1861  2007-06-21 19:06  StudentSystemDemo\公共类\Common.cs

     目录          0  2007-06-21 19:06  StudentSystemDemo\公共类

     文件       2674  2007-12-16 13:44  StudentSystemDemo\文件读写类\FileAccess.cs

     目录          0  2007-12-16 13:44  StudentSystemDemo\文件读写类

     文件       8380  2007-06-21 22:00  StudentSystemDemo\界面类\FrmCourseInfo.cs

     文件       4435  2007-06-22 18:08  StudentSystemDemo\界面类\FrmLogin.cs

     文件       3297  2007-08-27 10:45  StudentSystemDemo\界面类\FrmMain.cs

............此处省略8个文件信息

评论

共有 条评论