资源简介
基于项目目的和需求,我们拟采用基于对象的编程模式进行项目开发。整个系统采用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个文件信息
- 上一篇:C#版蓝牙测试工具
- 下一篇:C#代码生成器(生成MVC三层代码)
相关资源
- C#代码生成器(生成MVC三层代码)
- C#版蓝牙测试工具
- C#处理png图片位深度和交错属性
- C#冒泡排序动态演示程序(看了就会)
- 远程监控(C#源代码)
- 酒店管理系统(c#.net源码)
- C#异构数据库转换工具源码
- 101个微软的C#例子-Windows Forms篇
- c#编写的连连看程序
- C#如何模拟键盘输入
- 组合 算法 C# 背包问题
- C#中视图和存储过程应用
- C#使用剪切板粘贴数据
- C# TcpListener 例程(源码)
- C#实例程序100例子
- C#设计高精度语音识别程序
- winform(c#)最全73种非常漂亮界面样式
- 图书管理系统-----------C# 版
- C#串口通信程序(VS2010)(serialPort组
- C#鼠标自动点击软件
- C#实现pos打机的附ECS/POS说明书)
- c# 带树形显示的下拉框
- 最新Trimble全站仪串口通讯
- 呕心沥血之作。C#矩阵类matrix
- C#Oracle数据库备份
- C#(Winfrom)窗体传值问题(子窗体回
- c# 委托、父窗体传值到子窗体DEMO,完
- C#打印条码源码
- JSON C#与服务器通讯
- C#的服务器程序
评论
共有 条评论