实例介绍
c#网络应用开发例学与实践
【实例截图】
【核心代码】
51CTO下载-c网络应用开发例学与实践
└── c#网络应用开发例学与实践
└── source
├── ch1
│ └── Hello
│ ├── Hello
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── Hello.exe
│ │ │ ├── Hello.pdb
│ │ │ └── Hello.vshost.exe
│ │ ├── Form1.cs
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.resx
│ │ ├── Hello.csproj
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── Hello.csproj.GenerateResource.Cache
│ │ │ │ ├── Hello.exe
│ │ │ │ ├── Hello.Form1.resources
│ │ │ │ ├── Hello.pdb
│ │ │ │ └── Hello.Properties.Resources.resources
│ │ │ └── Hello.csproj.FileList.txt
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Hello.sln
│ └── Hello.suo
├── ch2
│ ├── Array
│ │ ├── Array
│ │ │ ├── Array.csproj
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── Array.exe
│ │ │ │ ├── Array.pdb
│ │ │ │ └── Array.vshost.exe
│ │ │ ├── obj
│ │ │ │ ├── Array.csproj.FileList.txt
│ │ │ │ └── Debug
│ │ │ │ ├── Array.exe
│ │ │ │ └── Array.pdb
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── Array.sln
│ │ └── Array.suo
│ ├── DataType
│ │ ├── DataType
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── DataType.exe
│ │ │ │ ├── DataType.pdb
│ │ │ │ └── DataType.vshost.exe
│ │ │ ├── DataType.csproj
│ │ │ ├── Enum.cs
│ │ │ ├── obj
│ │ │ │ ├── DataType.csproj.FileList.txt
│ │ │ │ └── Debug
│ │ │ │ ├── DataType.exe
│ │ │ │ └── DataType.pdb
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── DataType.sln
│ │ └── DataType.suo
│ ├── Helloworld
│ │ ├── Helloworld
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── Helloworld.exe
│ │ │ │ ├── Helloworld.pdb
│ │ │ │ └── Helloworld.vshost.exe
│ │ │ ├── Helloworld.csproj
│ │ │ ├── obj
│ │ │ │ ├── Debug
│ │ │ │ │ ├── Helloworld.exe
│ │ │ │ │ └── Helloworld.pdb
│ │ │ │ └── Helloworld.csproj.FileList.txt
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── Helloworld.sln
│ │ └── Helloworld.suo
│ └── IfSwitch
│ ├── IfSwitch
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── IfSwitch.exe
│ │ │ ├── IfSwitch.pdb
│ │ │ └── IfSwitch.vshost.exe
│ │ ├── IfSwitch.cs
│ │ ├── IfSwitch.csproj
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── IfSwitch.exe
│ │ │ │ └── IfSwitch.pdb
│ │ │ └── IfSwitch.csproj.FileList.txt
│ │ └── Properties
│ │ └── AssemblyInfo.cs
│ ├── IfSwitch.sln
│ └── IfSwitch.suo
├── ch3
│ ├── course.sql
│ ├── delete.sql
│ ├── GetAllStudents.sql
│ ├── GetStudentByID.sql
│ ├── insert.sql
│ ├── select.sql
│ ├── stuCourse.sql
│ ├── Student.ldf
│ ├── Student.mdf
│ ├── student.sql
│ └── update.sql
├── ch4
│ ├── DataReaderTest
│ │ ├── DataReaderTest
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── DataReaderTest.exe
│ │ │ │ ├── DataReaderTest.pdb
│ │ │ │ └── DataReaderTest.vshost.exe
│ │ │ ├── DataReaderTest.csproj
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── obj
│ │ │ │ ├── DataReaderTest.csproj.FileList.txt
│ │ │ │ └── Debug
│ │ │ │ ├── DataReaderTest.csproj.GenerateResource.Cache
│ │ │ │ ├── DataReaderTest.exe
│ │ │ │ ├── DataReaderTest.Form1.resources
│ │ │ │ ├── DataReaderTest.pdb
│ │ │ │ └── DataReaderTest.Properties.Resources.resources
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── DataReaderTest.sln
│ │ └── DataReaderTest.suo
│ ├── DataSetTest
│ │ ├── DataSetTest
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── DataSetTest.exe
│ │ │ │ ├── DataSetTest.pdb
│ │ │ │ └── DataSetTest.vshost.exe
│ │ │ ├── DataSetTest.csproj
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── obj
│ │ │ │ ├── DataSetTest.csproj.FileList.txt
│ │ │ │ └── Debug
│ │ │ │ ├── DataSetTest.csproj.GenerateResource.Cache
│ │ │ │ ├── DataSetTest.exe
│ │ │ │ ├── DataSetTest.Form1.resources
│ │ │ │ ├── DataSetTest.pdb
│ │ │ │ └── DataSetTest.Properties.Resources.resources
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── DataSetTest.sln
│ │ └── DataSetTest.suo
│ ├── ExecuteScalarTest
│ │ ├── ExecuteScalarTest
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── ExecuteScalarTest.exe
│ │ │ │ ├── ExecuteScalarTest.pdb
│ │ │ │ └── ExecuteScalarTest.vshost.exe
│ │ │ ├── ExecuteScalarTest.csproj
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Form2.cs
│ │ │ ├── Form2.Designer.cs
│ │ │ ├── Form2.resx
│ │ │ ├── obj
│ │ │ │ ├── Debug
│ │ │ │ │ ├── ExecuteScalarTest.csproj.GenerateResource.Cache
│ │ │ │ │ ├── ExecuteScalarTest.exe
│ │ │ │ │ ├── ExecuteScalarTest.Form1.resources
│ │ │ │ │ ├── ExecuteScalarTest.Form2.resources
│ │ │ │ │ ├── ExecuteScalarTest.pdb
│ │ │ │ │ └── ExecuteScalarTest.Properties.Resources.resources
│ │ │ │ └── ExecuteScalarTest.csproj.FileList.txt
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── ExecuteScalarTest.sln
│ │ └── ExecuteScalarTest.suo
│ ├── GetStudent
│ │ ├── GetStudent
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ └── GetStudent.vshost.exe
│ │ │ ├── GetStudent.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── GetStudent.sln
│ │ └── GetStudent.suo
│ ├── OleDbConnectionTest
│ │ ├── OleDbConnectionTest
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── Data
│ │ │ │ │ └── Student.mdb
│ │ │ │ ├── OleDbConnectionTest.exe
│ │ │ │ ├── OleDbConnectionTest.pdb
│ │ │ │ └── OleDbConnectionTest.vshost.exe
│ │ │ ├── Data
│ │ │ │ └── Student.mdb
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── obj
│ │ │ │ ├── Debug
│ │ │ │ │ ├── OleDbConnectionTest.csproj.GenerateResource.Cache
│ │ │ │ │ ├── OleDbConnectionTest.exe
│ │ │ │ │ ├── OleDbConnectionTest.Form1.resources
│ │ │ │ │ ├── OleDbConnectionTest.pdb
│ │ │ │ │ └── OleDbConnectionTest.Properties.Resources.resources
│ │ │ │ └── OleDbConnectionTest.csproj.FileList.txt
│ │ │ ├── OleDbConnectionTest.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── OleDbConnectionTest.sln
│ │ └── OleDbConnectionTest.suo
│ ├── SqlConnectionTest
│ │ ├── SqlConnectionTest
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── SqlConnectionTest.exe
│ │ │ │ ├── SqlConnectionTest.pdb
│ │ │ │ └── SqlConnectionTest.vshost.exe
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── obj
│ │ │ │ ├── Debug
│ │ │ │ │ ├── SqlConnectionTest.csproj.GenerateResource.Cache
│ │ │ │ │ ├── SqlConnectionTest.exe
│ │ │ │ │ ├── SqlConnectionTest.Form1.resources
│ │ │ │ │ ├── SqlConnectionTest.pdb
│ │ │ │ │ └── SqlConnectionTest.Properties.Resources.resources
│ │ │ │ └── SqlConnectionTest.csproj.FileList.txt
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── SqlConnectionTest.csproj
│ │ ├── SqlConnectionTest.sln
│ │ └── SqlConnectionTest.suo
│ ├── Student.mdb
│ └── UpdateTest
│ ├── UpdateTest
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── UpdateTest.exe
│ │ │ ├── UpdateTest.pdb
│ │ │ └── UpdateTest.vshost.exe
│ │ ├── Form1.cs
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.resx
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── UpdateTest.csproj.GenerateResource.Cache
│ │ │ │ ├── UpdateTest.exe
│ │ │ │ ├── UpdateTest.Form1.resources
│ │ │ │ ├── UpdateTest.pdb
│ │ │ │ └── UpdateTest.Properties.Resources.resources
│ │ │ └── UpdateTest.csproj.FileList.txt
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ └── UpdateTest.csproj
│ ├── UpdateTest.sln
│ └── UpdateTest.suo
├── ch5
│ ├── contact.sql
│ ├── V1
│ │ └── Contact
│ │ ├── Contact
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── Contact.exe
│ │ │ │ ├── Contact.pdb
│ │ │ │ └── Contact.vshost.exe
│ │ │ ├── Contact.csproj
│ │ │ ├── MainForm.cs
│ │ │ ├── MainForm.Designer.cs
│ │ │ ├── MainForm.resx
│ │ │ ├── obj
│ │ │ │ ├── Contact.csproj.FileList.txt
│ │ │ │ └── Debug
│ │ │ │ ├── Contact.csproj.GenerateResource.Cache
│ │ │ │ ├── Contact.exe
│ │ │ │ ├── Contact.MainForm.resources
│ │ │ │ ├── Contact.pdb
│ │ │ │ └── Contact.Properties.Resources.resources
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Contact.sln
│ │ └── Contact.suo
│ └── V2
│ └── Contact
│ ├── Contact
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── Contact.exe
│ │ │ │ ├── Contact.pdb
│ │ │ │ └── Contact.vshost.exe
│ │ │ └── Release
│ │ │ ├── Contact.exe
│ │ │ ├── Contact.pdb
│ │ │ └── Contact.vshost.exe
│ │ ├── Contact.csproj
│ │ ├── ContactDB.cs
│ │ ├── MainForm.cs
│ │ ├── MainForm.Designer.cs
│ │ ├── MainForm.resx
│ │ ├── obj
│ │ │ ├── Contact.csproj.FileList.txt
│ │ │ ├── Debug
│ │ │ │ ├── Contact.csproj.GenerateResource.Cache
│ │ │ │ ├── Contact.exe
│ │ │ │ ├── Contact.MainForm.resources
│ │ │ │ ├── Contact.pdb
│ │ │ │ └── Contact.Properties.Resources.resources
│ │ │ └── Release
│ │ │ ├── Contact.csproj.GenerateResource.Cache
│ │ │ ├── Contact.exe
│ │ │ ├── Contact.MainForm.resources
│ │ │ ├── Contact.pdb
│ │ │ └── Contact.Properties.Resources.resources
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Contact.sln
│ └── Contact.suo
└── SchoolMIS
├── Administator
│ ├── AddTeacher.cs
│ ├── AddTeacher.Designer.cs
│ ├── AddTeacher.resx
│ ├── Administrator.csproj
│ ├── bin
│ │ ├── Debug
│ │ │ ├── Administator.exe
│ │ │ ├── Administator.pdb
│ │ │ ├── Administator.vshost.exe
│ │ │ ├── SchoolMIS.DataAccess.dll
│ │ │ └── SchoolMIS.DataAccess.pdb
│ │ └── Release
│ │ ├── Administator.exe
│ │ ├── Administator.pdb
│ │ ├── Administator.vshost.exe
│ │ ├── SchoolMIS.DataAccess.dll
│ │ └── SchoolMIS.DataAccess.pdb
│ ├── CetForm.cs
│ ├── CetForm.Designer.cs
│ ├── CetForm.resx
│ ├── ChangePasswordForm.cs
│ ├── ChangePasswordForm.Designer.cs
│ ├── ChangePasswordForm.resx
│ ├── ComputerForm.cs
│ ├── ComputerForm.Designer.cs
│ ├── ComputerForm.resx
│ ├── GlobalInfo.cs
│ ├── ListAllTeacher.cs
│ ├── ListAllTeacher.Designer.cs
│ ├── ListAllTeacher.resx
│ ├── LoginForm.cs
│ ├── LoginForm.Designer.cs
│ ├── LoginForm.resx
│ ├── MainForm.cs
│ ├── MainForm.Designer.cs
│ ├── MainForm.resx
│ ├── obj
│ │ ├── Administator.csproj.FileList.txt
│ │ ├── Administrator.csproj.FileList.txt
│ │ ├── Debug
│ │ │ ├── Administator.csproj.GenerateResource.Cache
│ │ │ ├── Administator.exe
│ │ │ ├── Administator.MainForm.resources
│ │ │ ├── Administator.pdb
│ │ │ ├── Administator.Properties.Resources.resources
│ │ │ ├── Administrator.csproj.GenerateResource.Cache
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ ├── SchoolMIS.UI.Administrator.AddTeacher.resources
│ │ │ ├── SchoolMIS.UI.Administrator.CetForm.resources
│ │ │ ├── SchoolMIS.UI.Administrator.ChangePasswordForm.resources
│ │ │ ├── SchoolMIS.UI.Administrator.ComputerForm.resources
│ │ │ ├── SchoolMIS.UI.Administrator.ListAllTeacher.resources
│ │ │ ├── SchoolMIS.UI.Administrator.LoginForm.resources
│ │ │ ├── SchoolMIS.UI.Administrator.MainForm.resources
│ │ │ ├── SchoolMIS.UI.Administrator.Properties.Resources.resources
│ │ │ └── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ └── Release
│ │ ├── Administator.exe
│ │ ├── Administator.pdb
│ │ ├── Administrator.csproj.GenerateResource.Cache
│ │ ├── ResolveAssemblyReference.cache
│ │ ├── SchoolMIS.UI.Administrator.AddTeacher.resources
│ │ ├── SchoolMIS.UI.Administrator.CetForm.resources
│ │ ├── SchoolMIS.UI.Administrator.ChangePasswordForm.resources
│ │ ├── SchoolMIS.UI.Administrator.ComputerForm.resources
│ │ ├── SchoolMIS.UI.Administrator.ListAllTeacher.resources
│ │ ├── SchoolMIS.UI.Administrator.LoginForm.resources
│ │ ├── SchoolMIS.UI.Administrator.MainForm.resources
│ │ ├── SchoolMIS.UI.Administrator.Properties.Resources.resources
│ │ └── TempPE
│ │ └── Properties.Resources.Designer.cs.dll
│ ├── Program.cs
│ └── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
├── DataAccess
│ ├── Administrator
│ │ └── SQLServer
│ │ ├── AdministratorDB.cs
│ │ ├── Constants.cs
│ │ └── TestDB.cs
│ ├── bin
│ │ ├── Debug
│ │ │ ├── SchoolMIS.DataAccess.dll
│ │ │ └── SchoolMIS.DataAccess.pdb
│ │ └── Release
│ │ ├── SchoolMIS.DataAccess.dll
│ │ └── SchoolMIS.DataAccess.pdb
│ ├── Common
│ │ └── Entity
│ │ ├── ECourse.cs
│ │ └── EStudent.cs
│ ├── DataAccess.cd
│ ├── DataAccess.csproj
│ ├── obj
│ │ ├── DataAccess.csproj.FileList.txt
│ │ ├── Debug
│ │ │ ├── Refactor
│ │ │ │ └── SchoolMIS.DataAccess.dll
│ │ │ ├── SchoolMIS.DataAccess.dll
│ │ │ └── SchoolMIS.DataAccess.pdb
│ │ └── Release
│ │ ├── Refactor
│ │ │ └── SchoolMIS.DataAccess.dll
│ │ ├── SchoolMIS.DataAccess.dll
│ │ └── SchoolMIS.DataAccess.pdb
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Student
│ │ └── SQLServer
│ │ ├── CETDB.cs
│ │ ├── ComputerDB.cs
│ │ ├── Constants.cs
│ │ ├── CourseDB.cs
│ │ └── StudentDB.cs
│ └── Teacher
│ └── SQLServer
│ ├── Constants.cs
│ ├── CourseDB.cs
│ └── TeacherDB.cs
├── DataBase
│ ├── student_log.ldf
│ ├── student.mdf
│ └── student.sql
├── SchoolMIS.sln
├── SchoolMIS.suo
├── Student
│ ├── AddCET.cs
│ ├── AddCET.Designer.cs
│ ├── AddCET.resx
│ ├── AddComForm.cs
│ ├── AddComForm.Designer.cs
│ ├── AddComForm.resx
│ ├── AllCourseForm.cs
│ ├── AllCourseForm.Designer.cs
│ ├── AllCourseForm.resx
│ ├── bin
│ │ ├── Debug
│ │ │ ├── SchoolMIS.DataAccess.dll
│ │ │ ├── SchoolMIS.DataAccess.pdb
│ │ │ ├── Student.exe
│ │ │ ├── Student.pdb
│ │ │ └── Student.vshost.exe
│ │ └── Release
│ │ ├── SchoolMIS.DataAccess.dll
│ │ ├── SchoolMIS.DataAccess.pdb
│ │ ├── Student.exe
│ │ ├── Student.pdb
│ │ └── Student.vshost.exe
│ ├── CetForm.cs
│ ├── CetForm.Designer.cs
│ ├── CetForm.resx
│ ├── ComputerForm.cs
│ ├── ComputerForm.Designer.cs
│ ├── ComputerForm.resx
│ ├── GlobalInfo.cs
│ ├── LoginForm.cs
│ ├── LoginForm.Designer.cs
│ ├── LoginForm.resx
│ ├── MainForm.cs
│ ├── MainForm.Designer.cs
│ ├── MainForm.resx
│ ├── ModifyInfoForm.cs
│ ├── ModifyInfoForm.Designer.cs
│ ├── ModifyInfoForm.resx
│ ├── obj
│ │ ├── Debug
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ ├── SchoolMIS.UI.Student.AddCET.resources
│ │ │ ├── SchoolMIS.UI.Student.AddComForm.resources
│ │ │ ├── SchoolMIS.UI.Student.AllCourseForm.resources
│ │ │ ├── SchoolMIS.UI.Student.CetForm.resources
│ │ │ ├── SchoolMIS.UI.Student.ComputerForm.resources
│ │ │ ├── SchoolMIS.UI.Student.LoginForm.resources
│ │ │ ├── SchoolMIS.UI.Student.MainForm.resources
│ │ │ ├── SchoolMIS.UI.Student.ModifyInfoForm.resources
│ │ │ ├── SchoolMIS.UI.Student.Properties.Resources.resources
│ │ │ ├── SchoolMIS.UI.Student.RegisterForm.resources
│ │ │ ├── SchoolMIS.UI.Student.SelectedCourseForm.resources
│ │ │ ├── Student.csproj.GenerateResource.Cache
│ │ │ ├── Student.exe
│ │ │ ├── Student.pdb
│ │ │ └── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ ├── Release
│ │ │ ├── SchoolMIS.UI.Student.AddCET.resources
│ │ │ ├── SchoolMIS.UI.Student.AddComForm.resources
│ │ │ ├── SchoolMIS.UI.Student.AllCourseForm.resources
│ │ │ ├── SchoolMIS.UI.Student.CetForm.resources
│ │ │ ├── SchoolMIS.UI.Student.ComputerForm.resources
│ │ │ ├── SchoolMIS.UI.Student.LoginForm.resources
│ │ │ ├── SchoolMIS.UI.Student.MainForm.resources
│ │ │ ├── SchoolMIS.UI.Student.ModifyInfoForm.resources
│ │ │ ├── SchoolMIS.UI.Student.Properties.Resources.resources
│ │ │ ├── SchoolMIS.UI.Student.RegisterForm.resources
│ │ │ ├── SchoolMIS.UI.Student.SelectedCourseForm.resources
│ │ │ ├── Student.csproj.GenerateResource.Cache
│ │ │ ├── Student.exe
│ │ │ ├── Student.pdb
│ │ │ └── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ └── Student.csproj.FileList.txt
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── RegisterForm.cs
│ ├── RegisterForm.Designer.cs
│ ├── RegisterForm.resx
│ ├── SelectedCourseForm.cs
│ ├── SelectedCourseForm.Designer.cs
│ ├── SelectedCourseForm.resx
│ ├── Student.csproj
│ └── Student.suo
└── Teacher
├── AddCourseForm.cs
├── AddCourseForm.Designer.cs
├── AddCourseForm.resx
├── bin
│ ├── Debug
│ │ ├── SchoolMIS.DataAccess.dll
│ │ ├── SchoolMIS.DataAccess.pdb
│ │ ├── Teacher.exe
│ │ ├── Teacher.pdb
│ │ └── Teacher.vshost.exe
│ └── Release
│ ├── SchoolMIS.DataAccess.dll
│ ├── SchoolMIS.DataAccess.pdb
│ ├── Teacher.exe
│ ├── Teacher.pdb
│ └── Teacher.vshost.exe
├── ChangePasswordForm.cs
├── ChangePasswordForm.Designer.cs
├── ChangePasswordForm.resx
├── GlobalInfo.cs
├── ListAllCourse.cs
├── ListAllCourse.Designer.cs
├── ListAllCourse.resx
├── ListCourseStudent.cs
├── ListCourseStudent.Designer.cs
├── ListCourseStudent.resx
├── LoginForm.cs
├── LoginForm.Designer.cs
├── LoginForm.resx
├── MainForm.cs
├── MainForm.Designer.cs
├── MainForm.resx
├── obj
│ ├── Debug
│ │ ├── ResolveAssemblyReference.cache
│ │ ├── SchoolMIS.UI.Teacher.AddCourseForm.resources
│ │ ├── SchoolMIS.UI.Teacher.ChangePasswordForm.resources
│ │ ├── SchoolMIS.UI.Teacher.ListAllCourse.resources
│ │ ├── SchoolMIS.UI.Teacher.ListCourseStudent.resources
│ │ ├── SchoolMIS.UI.Teacher.LoginForm.resources
│ │ ├── SchoolMIS.UI.Teacher.MainForm.resources
│ │ ├── SchoolMIS.UI.Teacher.Properties.Resources.resources
│ │ ├── Teacher.csproj.GenerateResource.Cache
│ │ ├── Teacher.exe
│ │ ├── Teacher.pdb
│ │ └── TempPE
│ │ └── Properties.Resources.Designer.cs.dll
│ ├── Release
│ │ ├── SchoolMIS.UI.Teacher.AddCourseForm.resources
│ │ ├── SchoolMIS.UI.Teacher.ChangePasswordForm.resources
│ │ ├── SchoolMIS.UI.Teacher.ListAllCourse.resources
│ │ ├── SchoolMIS.UI.Teacher.ListCourseStudent.resources
│ │ ├── SchoolMIS.UI.Teacher.LoginForm.resources
│ │ ├── SchoolMIS.UI.Teacher.MainForm.resources
│ │ ├── SchoolMIS.UI.Teacher.Properties.Resources.resources
│ │ ├── Teacher.csproj.GenerateResource.Cache
│ │ ├── Teacher.exe
│ │ ├── Teacher.pdb
│ │ └── TempPE
│ │ └── Properties.Resources.Designer.cs.dll
│ └── Teacher.csproj.FileList.txt
├── Program.cs
├── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
└── Teacher.csproj
159 directories, 511 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论