在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → C#小项目练习

C#小项目练习

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:5.21M
  • 下载次数:14
  • 浏览次数:68
  • 发布时间:2023-08-29
  • 实例类别:C#语言基础
  • 发 布 人:chenxiaolan
  • 文件格式:.rar
  • 所需积分:2
 相关标签: 项目练习 小项目 练习 项目 C#

实例介绍

【实例简介】C#.net 参考练习

【实例截图】

from clipboard

from clipboard

from clipboard

【核心代码】

.
├── C#小项目练习_完整项目.rar
└── 完整项目
    ├── P2P聊天工具
    │   └── Source
    │       ├── App.ico
    │       ├── AssemblyInfo.cs
    │       ├── Images
    │       │   ├── CONNECT.jpg
    │       │   ├── SEND.jpg
    │       │   ├── btnConnect.jpg
    │       │   ├── btnDisconnect.jpg
    │       │   ├── btnExit.jpg
    │       │   ├── duifang.jpg
    │       │   ├── main.jpg
    │       │   └── nicheng.jpg
    │       ├── TCPClientClient.cs
    │       ├── TCPClientClient.resx
    │       ├── WinSock
    │       │   ├── App.ico
    │       │   ├── AssemblyInfo.cs
    │       │   ├── TCPClientClient.cs
    │       │   ├── TCPClientClient.resx
    │       │   ├── WinSockClient.csproj
    │       │   ├── WinSockClient.csproj.user
    │       │   ├── app.config
    │       │   └── clsP2P.cs
    │       ├── WinSock.sln
    │       ├── WinSockClient.csproj
    │       ├── WinSockClient.csproj.user
    │       ├── WinSockClient.sln
    │       ├── app.config
    │       ├── bin
    │       │   └── Debug
    │       │       ├── WinSock.exe
    │       │       ├── WinSock.exe.config
    │       │       └── WinSock.pdb
    │       ├── clsP2P.cs
    │       └── obj
    │           └── Debug
    │               ├── TempPE
    │               ├── WinSock.TCPClient.resources
    │               ├── WinSock.exe
    │               ├── WinSock.pdb
    │               └── temp
    ├── Visual C#实现网络点对点通讯程序
    │   ├── App.ico
    │   ├── AssemblyInfo.cs
    │   ├── Bin
    │   │   └── Debug
    │   │       ├── 基于TCP协议的点对点聊天程序.pdb
    │   │       └── 基于TCP协议的点对点聊天程序.vshost.exe
    │   ├── Form1.cs
    │   ├── Form1.resx
    │   ├── Obj
    │   │   ├── Debug
    │   │   │   ├── TempPE
    │   │   │   ├── WindowsApplication41.exe.incr
    │   │   │   ├── WindowsApplication41.pdb
    │   │   │   ├── 基于TCP协议的点对点聊天程序.Form1.resources
    │   │   │   ├── 基于TCP协议的点对点聊天程序.exe.incr
    │   │   │   ├── 基于TCP协议的点对点聊天程序.pdb
    │   │   │   └── 实现网络点对点通讯程序.Form1.resources
    │   │   └── Visual C#实现网络点对点通讯程序.csproj.FileList.txt
    │   ├── UpgradeLog.XML
    │   ├── Visual C#实现网络点对点通讯程序.csproj
    │   ├── Visual C#实现网络点对点通讯程序.csproj.user
    │   ├── _UpgradeReport_Files
    │   │   ├── UpgradeReport.css
    │   │   ├── UpgradeReport.xslt
    │   │   ├── UpgradeReport_Minus.gif
    │   │   └── UpgradeReport_Plus.gif
    │   ├── 基于TCP协议的点对点聊天程序.sln
    │   └── 基于TCP协议的点对点聊天程序.suo
    ├── ZipFile
    │   ├── App.ico
    │   ├── AssemblyInfo.cs
    │   ├── Backup
    │   │   ├── App.ico
    │   │   ├── AssemblyInfo.cs
    │   │   ├── Unzip.cs
    │   │   ├── Zip.cs
    │   │   ├── ZipFile.cs
    │   │   ├── ZipFile.csproj
    │   │   ├── ZipFile.csproj.user
    │   │   ├── ZipFile.resx
    │   │   └── ZipFile.sln
    │   ├── Unzip.cs
    │   ├── UpgradeLog.XML
    │   ├── Zip.cs
    │   ├── ZipFile.cs
    │   ├── ZipFile.csproj
    │   ├── ZipFile.csproj.user
    │   ├── ZipFile.resx
    │   ├── ZipFile.sln
    │   ├── ZipFile.suo
    │   ├── _UpgradeReport_Files
    │   │   ├── UpgradeReport.css
    │   │   ├── UpgradeReport.xslt
    │   │   ├── UpgradeReport_Minus.gif
    │   │   └── UpgradeReport_Plus.gif
    │   ├── bin
    │   │   └── Debug
    │   │       ├── ICSharpCode.SharpZipLib.dll
    │   │       ├── ZipFile.exe
    │   │       ├── ZipFile.pdb
    │   │       └── ZipFile.vshost.exe
    │   └── obj
    │       ├── Debug
    │       │   ├── ResolveAssemblyReference.cache
    │       │   ├── TempPE
    │       │   ├── ZipFile.ZipFile.resources
    │       │   ├── ZipFile.csproj.GenerateResource.Cache
    │       │   ├── ZipFile.exe
    │       │   ├── ZipFile.pdb
    │       │   └── temp
    │       └── ZipFile.csproj.FileList.txt
    ├── atm
    │   ├── App.ico
    │   ├── AssemblyInfo.cs
    │   ├── DataConnection.cs
    │   ├── MenuScreen.cs
    │   ├── MenuScreen.resx
    │   ├── OpeningScreen.cs
    │   ├── OpeningScreen.resx
    │   ├── PrintRecord.cs
    │   ├── PrintRecord.resx
    │   ├── Transaction.cs
    │   ├── Transaction.resx
    │   ├── UpgradeLog.XML
    │   ├── _UpgradeReport_Files
    │   │   ├── UpgradeReport.css
    │   │   ├── UpgradeReport.xslt
    │   │   ├── UpgradeReport_Minus.gif
    │   │   └── UpgradeReport_Plus.gif
    │   ├── bank.sql
    │   ├── bin
    │   │   └── Debug
    │   │       ├── tempo.exe
    │   │       ├── tempo.pdb
    │   │       └── tempo.vshost.exe
    │   ├── obj
    │   │   ├── Debug
    │   │   │   ├── ATMProject.MenuScreen.resources
    │   │   │   ├── ATMProject.OpeningScreen.resources
    │   │   │   ├── ATMProject.PrintRecord.resources
    │   │   │   ├── ATMProject.Transaction.resources
    │   │   │   ├── TempPE
    │   │   │   ├── temp
    │   │   │   ├── tempo.csproj.GenerateResource.Cache
    │   │   │   ├── tempo.exe
    │   │   │   ├── tempo.exe.incr
    │   │   │   ├── tempo.pdb
    │   │   │   └── tempo.projdata
    │   │   └── tempo.csproj.FileList.txt
    │   ├── tempo.csproj
    │   ├── tempo.csproj.user
    │   ├── tempo.sln
    │   ├── tempo.sln.old
    │   └── tempo.suo
    ├── excel
    │   ├── Office.dll
    │   ├── VBIDE.dll
    │   └── excel.cs
    ├── mobilesale
    │   ├── App.ico
    │   ├── AssemblyInfo.cs
    │   ├── DataBL.cs
    │   ├── Form1.cs
    │   ├── Form1.resx
    │   ├── FormSaleOrder.cs
    │   ├── FormSaleOrder.resx
    │   ├── MobileForm.cs
    │   ├── MobileForm.resx
    │   ├── UpgradeLog.XML
    │   ├── _UpgradeReport_Files
    │   │   ├── UpgradeReport.css
    │   │   ├── UpgradeReport.xslt
    │   │   ├── UpgradeReport_Minus.gif
    │   │   └── UpgradeReport_Plus.gif
    │   ├── bin
    │   │   └── Debug
    │   │       ├── mobilesale.exe
    │   │       ├── mobilesale.pdb
    │   │       └── mobilesale.vshost.exe
    │   ├── mobilesale.csproj
    │   ├── mobilesale.csproj.user
    │   ├── mobilesale.sln
    │   ├── mobilesale.sql
    │   ├── mobilesale.suo
    │   └── obj
    │       ├── Debug
    │       │   ├── TempPE
    │       │   ├── mobilesale.Form1.resources
    │       │   ├── mobilesale.FormSaleOrder.resources
    │       │   ├── mobilesale.MobileForm.resources
    │       │   ├── mobilesale.exe
    │       │   ├── mobilesale.pdb
    │       │   ├── mobilesale.projdata
    │       │   └── temp
    │       └── mobilesale.csproj.FileList.txt
    ├── paintform
    │   ├── App.ico
    │   ├── AssemblyInfo.cs
    │   ├── MainForm.cs
    │   ├── MainForm.resx
    │   ├── PaintForm.cs
    │   ├── PaintForm.resx
    │   ├── UpgradeLog.XML
    │   ├── _UpgradeReport_Files
    │   │   ├── UpgradeReport.css
    │   │   ├── UpgradeReport.xslt
    │   │   ├── UpgradeReport_Minus.gif
    │   │   └── UpgradeReport_Plus.gif
    │   ├── bin
    │   │   └── Debug
    │   │       ├── paintform.exe
    │   │       ├── paintform.pdb
    │   │       └── paintform.vshost.exe
    │   ├── obj
    │   │   ├── Debug
    │   │   │   ├── PaintProgram.MainForm.resources
    │   │   │   ├── PaintProgram.PaintForm.resources
    │   │   │   ├── TempPE
    │   │   │   ├── paintform.csproj.GenerateResource.Cache
    │   │   │   ├── paintform.exe
    │   │   │   ├── paintform.exe.incr
    │   │   │   ├── paintform.pdb
    │   │   │   ├── paintform.projdata
    │   │   │   └── temp
    │   │   └── paintform.csproj.FileList.txt
    │   ├── paintform.csproj
    │   ├── paintform.csproj.user
    │   ├── paintform.sln
    │   ├── paintform.sln.old
    │   └── paintform.suo
    ├── 打印
    │   ├── App.ico
    │   ├── AssemblyInfo.cs
    │   ├── Example 3.csproj
    │   ├── Example 3.csproj.user
    │   ├── Example 3.sln
    │   ├── Example 3.suo
    │   ├── UpgradeLog.XML
    │   ├── _UpgradeReport_Files
    │   │   ├── UpgradeReport.css
    │   │   ├── UpgradeReport.xslt
    │   │   ├── UpgradeReport_Minus.gif
    │   │   └── UpgradeReport_Plus.gif
    │   ├── bin
    │   │   └── Debug
    │   │       └── Example 3.vshost.exe
    │   ├── frmPrintExample.cs
    │   ├── frmPrintExample.resx
    │   └── obj
    │       └── Debug
    │           └── TempPE
    ├── 实例42_UDP协议的实际应用
    │   └── source
    │       ├── Udp对时客户端
    │       │   ├── App.ico
    │       │   ├── AssemblyInfo.cs
    │       │   ├── Form1.cs
    │       │   ├── Form1.resx
    │       │   ├── UDP对时客户端.csproj
    │       │   ├── UDP对时客户端.csproj.user
    │       │   ├── UDP对时客户端.sln
    │       │   ├── UDP对时客户端.suo
    │       │   ├── UpgradeLog.XML
    │       │   ├── _UpgradeReport_Files
    │       │   │   ├── UpgradeReport.css
    │       │   │   ├── UpgradeReport.xslt
    │       │   │   ├── UpgradeReport_Minus.gif
    │       │   │   └── UpgradeReport_Plus.gif
    │       │   ├── bin
    │       │   │   └── Debug
    │       │   │       ├── UDP对时客户端.pdb
    │       │   │       └── UDP对时客户端.vshost.exe
    │       │   └── obj
    │       │       ├── Debug
    │       │       │   ├── TempPE
    │       │       │   ├── UDP对时客户端.SystemTime.resources
    │       │       │   ├── UDP对时客户端.exe.incr
    │       │       │   └── UDP对时客户端.pdb
    │       │       └── UDP对时客户端.csproj.FileList.txt
    │       └── Udp对时服务器端
    │           ├── App.ico
    │           ├── AssemblyInfo.cs
    │           ├── Form1.cs
    │           ├── Form1.resx
    │           ├── UDP对时服务器端.csproj
    │           ├── UDP对时服务器端.csproj.user
    │           ├── UDP对时服务器端.sln
    │           ├── bin
    │           │   └── Debug
    │           │       └── UDP对时服务器端.pdb
    │           └── obj
    │               └── Debug
    │                   ├── UDP对时服务器端.Form1.resources
    │                   ├── UDP对时服务器端.exe.incr
    │                   └── UDP对时服务器端.pdb
    ├── 用到framwork
    │   ├── ICSharpCode.SharpZLib.cmbx
    │   ├── ICSharpCode.SharpZLib.sln
    │   ├── ICSharpCode.SharpZLib.suo
    │   ├── ICSharpCode.SharpZipLib.key
    │   ├── REVISION
    │   ├── SharpZipLib.shfb
    │   ├── SharpZlib.build
    │   ├── bin
    │   │   ├── ICSharpCode.SharpZipLib.dll
    │   │   ├── ICSharpCode.SharpZipLib.pdb
    │   │   └── ICSharpCode.SharpZipLib.xml
    │   ├── build.bat
    │   ├── doc
    │   │   ├── COPYING.txt
    │   │   ├── Changes.txt
    │   │   ├── ReadMe.rtf
    │   │   └── specification
    │   │       ├── appnote.txt
    │   │       ├── bzip2 - Wikipedia, the free encyclopedia.htm
    │   │       ├── rfc-deflate.txt
    │   │       ├── rfc-gzip.txt
    │   │       ├── rfc-zlib.txt
    │   │       ├── rfc1950.txt
    │   │       ├── rfc1951.txt
    │   │       └── rfc1952.txt
    │   ├── installGAC.bat
    │   ├── mkDistribution.bat
    │   ├── mkhelp.bat
    │   ├── samples
    │   │   ├── DIME
    │   │   │   ├── DimeDataSetService
    │   │   │   │   ├── AssemblyInfo.cs
    │   │   │   │   ├── DimeDataSetService.csproj
    │   │   │   │   ├── DimeDataSetService.csproj.webinfo
    │   │   │   │   ├── DimeDataSetService.sln
    │   │   │   │   ├── DimeDataSetService.suo
    │   │   │   │   ├── DimeDataSetService.vsdisco
    │   │   │   │   ├── Global.asax
    │   │   │   │   ├── Global.asax.cs
    │   │   │   │   ├── Global.asax.resx
    │   │   │   │   ├── Service1.asmx
    │   │   │   │   ├── Service1.asmx.cs
    │   │   │   │   ├── Service1.asmx.resx
    │   │   │   │   └── Web.config
    │   │   │   ├── DimeDataSetServiceConsumer
    │   │   │   │   ├── App.ico
    │   │   │   │   ├── AssemblyInfo.cs
    │   │   │   │   ├── DimeDataSetServiceConsumer.csproj
    │   │   │   │   ├── DimeDataSetServiceConsumer.csproj.user
    │   │   │   │   ├── DimeDataSetServiceConsumer.sln
    │   │   │   │   ├── DimeDataSetServiceConsumer.suo
    │   │   │   │   ├── Main.cs
    │   │   │   │   ├── Main.resx
    │   │   │   │   └── Web References
    │   │   │   │       └── localhost
    │   │   │   │           ├── Reference.cs
    │   │   │   │           ├── Reference.map
    │   │   │   │           ├── Service1.disco
    │   │   │   │           └── Service1.wsdl
    │   │   │   └── readme.txt
    │   │   ├── HttpCompressionModule
    │   │   │   ├── HttpCompressionModule.sln
    │   │   │   ├── example
    │   │   │   │   ├── Default.aspx
    │   │   │   │   ├── DefaultController.cs
    │   │   │   │   ├── Example.csproj
    │   │   │   │   ├── ExistingImage.ashx
    │   │   │   │   ├── Image.ashx
    │   │   │   │   ├── blowery.gif
    │   │   │   │   └── web.config
    │   │   │   ├── httpcompressionmodule.pdf
    │   │   │   ├── license.txt
    │   │   │   ├── readme.txt
    │   │   │   └── src
    │   │   │       ├── AssemblyInfo.cs
    │   │   │       ├── ConfigSectionHandler.cs
    │   │   │       ├── DeflateFilter.cs
    │   │   │       ├── GZipFilter.cs
    │   │   │       ├── HttpCompressingFilter.cs
    │   │   │       ├── HttpCompressionModule.cs
    │   │   │       ├── HttpCompressionModule.csproj
    │   │   │       ├── HttpCompressionModuleSettings.cs
    │   │   │       ├── HttpOutputFilter.cs
    │   │   │       ├── doc
    │   │   │       │   └── HttpCompressionModule.xml
    │   │   │       └── refs
    │   │   │           └── SharpZipLib.xml
    │   │   ├── cs
    │   │   │   ├── CSSamples.sln
    │   │   │   ├── CSSamples.suo
    │   │   │   ├── CreateZipFile
    │   │   │   │   ├── AssemblyInfo.cs
    │   │   │   │   ├── CreateZipFile.cmbx
    │   │   │   │   ├── CreateZipFile.csproj
    │   │   │   │   ├── CreateZipFile.csproj.user
    │   │   │   │   ├── CreateZipFile.prjx
    │   │   │   │   ├── CreateZipFile.sln
    │   │   │   │   ├── Main.cs
    │   │   │   │   └── readme.txt
    │   │   │   ├── FastZip
    │   │   │   │   ├── AssemblyInfo.cs
    │   │   │   │   ├── FastZip.cmbx
    │   │   │   │   ├── FastZip.csproj
    │   │   │   │   ├── FastZip.csproj.user
    │   │   │   │   ├── FastZip.prjx
    │   │   │   │   ├── FastZip.sln
    │   │   │   │   └── Main.cs
    │   │   │   ├── minibzip2
    │   │   │   │   ├── AssemblyInfo.cs
    │   │   │   │   ├── Main.cs
    │   │   │   │   ├── minibzip2.cmbx
    │   │   │   │   ├── minibzip2.csproj
    │   │   │   │   ├── minibzip2.csproj.user
    │   │   │   │   ├── minibzip2.prjx
    │   │   │   │   ├── minibzip2.sln
    │   │   │   │   └── readme.txt
    │   │   │   ├── minigzip
    │   │   │   │   ├── AssemblyInfo.cs
    │   │   │   │   ├── Main.cs
    │   │   │   │   ├── minigzip.cmbx
    │   │   │   │   ├── minigzip.csproj
    │   │   │   │   ├── minigzip.csproj.user
    │   │   │   │   ├── minigzip.prjx
    │   │   │   │   ├── minigzip.sln
    │   │   │   │   └── readme.txt
    │   │   │   ├── samples.build
    │   │   │   ├── sz
    │   │   │   │   ├── AssemblyInfo.cs
    │   │   │   │   ├── sz.cmbx
    │   │   │   │   ├── sz.cs
    │   │   │   │   ├── sz.csproj
    │   │   │   │   ├── sz.prjx
    │   │   │   │   ├── sz.sln
    │   │   │   │   └── sz.suo
    │   │   │   ├── tar
    │   │   │   │   ├── AssemblyInfo.cs
    │   │   │   │   ├── Main.cs
    │   │   │   │   ├── tar.cmbx
    │   │   │   │   ├── tar.csproj
    │   │   │   │   ├── tar.csproj.user
    │   │   │   │   ├── tar.prjx
    │   │   │   │   └── tar.sln
    │   │   │   ├── unzipfile
    │   │   │   │   ├── UnZipFile.cs
    │   │   │   │   ├── readme.txt
    │   │   │   │   ├── unzipfile.cmbx
    │   │   │   │   ├── unzipfile.csproj
    │   │   │   │   ├── unzipfile.csproj.user
    │   │   │   │   ├── unzipfile.prjx
    │   │   │   │   └── unzipfile.sln
    │   │   │   ├── viewzipfile
    │   │   │   │   ├── ViewZipFile.cs
    │   │   │   │   ├── readme.txt
    │   │   │   │   ├── viewzipfile.cmbx
    │   │   │   │   ├── viewzipfile.csproj
    │   │   │   │   ├── viewzipfile.csproj.user
    │   │   │   │   ├── viewzipfile.prjx
    │   │   │   │   └── viewzipfile.sln
    │   │   │   ├── zf
    │   │   │   │   ├── AssemblyInfo.cs
    │   │   │   │   ├── zf.cmbx
    │   │   │   │   ├── zf.cs
    │   │   │   │   ├── zf.csproj
    │   │   │   │   ├── zf.prjx
    │   │   │   │   └── zf.sln
    │   │   │   └── zipfiletest
    │   │   │       ├── ZipFileTest.cs
    │   │   │       ├── readme.txt
    │   │   │       ├── zipfiletest.cmbx
    │   │   │       ├── zipfiletest.csproj
    │   │   │       ├── zipfiletest.csproj.user
    │   │   │       ├── zipfiletest.prjx
    │   │   │       └── zipfiletest.sln
    │   │   └── vb
    │   │       ├── CreateZipFile
    │   │       │   ├── AssemblyInfo.vb
    │   │       │   ├── CreateZipFile.cmbx
    │   │       │   ├── CreateZipFile.prjx
    │   │       │   ├── CreateZipFile.sln
    │   │       │   ├── CreateZipFile.vbproj
    │   │       │   ├── CreateZipFile.vbproj.user
    │   │       │   ├── MainForm.resources
    │   │       │   ├── MainForm.resx
    │   │       │   └── MainForm.vb
    │   │       ├── VBSamples.sln
    │   │       ├── VBSamples.suo
    │   │       ├── minibzip2
    │   │       │   ├── AssemblyInfo.vb
    │   │       │   ├── Main.resx
    │   │       │   ├── Main.vb
    │   │       │   ├── minibzip2.cmbx
    │   │       │   ├── minibzip2.prjx
    │   │       │   ├── minibzip2.sln
    │   │       │   ├── minibzip2.vbproj
    │   │       │   └── minibzip2.vbproj.user
    │   │       ├── samples.build
    │   │       ├── viewzipfile
    │   │       │   ├── AssemblyInfo.vb
    │   │       │   ├── Main.resx
    │   │       │   ├── Main.vb
    │   │       │   ├── MainForm.resources
    │   │       │   ├── viewzipfile.cmbx
    │   │       │   ├── viewzipfile.prjx
    │   │       │   ├── viewzipfile.sln
    │   │       │   ├── viewzipfile.suo
    │   │       │   ├── viewzipfile.vbproj
    │   │       │   └── viewzipfile.vbproj.user
    │   │       └── zipfiletest
    │   │           ├── AssemblyInfo.vb
    │   │           ├── Main.resx
    │   │           ├── Main.vb
    │   │           ├── zipfiletest.cmbx
    │   │           ├── zipfiletest.prjx
    │   │           ├── zipfiletest.sln
    │   │           ├── zipfiletest.vbproj
    │   │           └── zipfiletest.vbproj.user
    │   ├── src
    │   │   ├── AssemblyInfo.cs
    │   │   ├── BZip2
    │   │   │   ├── BZip2.cs
    │   │   │   ├── BZip2Constants.cs
    │   │   │   ├── BZip2Exception.cs
    │   │   │   ├── BZip2InputStream.cs
    │   │   │   └── BZip2OutputStream.cs
    │   │   ├── Checksums
    │   │   │   ├── Adler32.cs
    │   │   │   ├── CRC32.cs
    │   │   │   ├── IChecksum.cs
    │   │   │   └── StrangeCRC.cs
    │   │   ├── Core
    │   │   │   ├── FileSystemScanner.cs
    │   │   │   ├── INameTransform.cs
    │   │   │   ├── IScanFilter.cs
    │   │   │   ├── NameFilter.cs
    │   │   │   ├── PathFilter.cs
    │   │   │   └── StreamUtils.cs
    │   │   ├── Encryption
    │   │   │   └── PkzipClassic.cs
    │   │   ├── GZip
    │   │   │   ├── GZIPConstants.cs
    │   │   │   ├── GZipException.cs
    │   │   │   ├── GzipInputStream.cs
    │   │   │   └── GzipOutputStream.cs
    │   │   ├── ICSharpCode.SharpZLib.csproj
    │   │   ├── ICSharpCode.SharpZLib.csproj.user
    │   │   ├── ICSharpCode.SharpZLib.prjx
    │   │   ├── Main.cs
    │   │   ├── SharpZipBaseException.cs
    │   │   ├── Tar
    │   │   │   ├── InvalidHeaderException.cs
    │   │   │   ├── TarArchive.cs
    │   │   │   ├── TarBuffer.cs
    │   │   │   ├── TarEntry.cs
    │   │   │   ├── TarException.cs
    │   │   │   ├── TarHeader.cs
    │   │   │   ├── TarInputStream.cs
    │   │   │   └── TarOutputStream.cs
    │   │   ├── Zip
    │   │   │   ├── Compression
    │   │   │   │   ├── Deflater.cs
    │   │   │   │   ├── DeflaterConstants.cs
    │   │   │   │   ├── DeflaterEngine.cs
    │   │   │   │   ├── DeflaterHuffman.cs
    │   │   │   │   ├── DeflaterPending.cs
    │   │   │   │   ├── Inflater.cs
    │   │   │   │   ├── InflaterDynHeader.cs
    │   │   │   │   ├── InflaterHuffmanTree.cs
    │   │   │   │   ├── PendingBuffer.cs
    │   │   │   │   └── Streams
    │   │   │   │       ├── DeflaterOutputStream.cs
    │   │   │   │       ├── InflaterInputStream.cs
    │   │   │   │       ├── OutputWindow.cs
    │   │   │   │       └── StreamManipulator.cs
    │   │   │   ├── FastZip.cs
    │   │   │   ├── IEntryFactory.cs
    │   │   │   ├── ZipConstants.cs
    │   │   │   ├── ZipEntry.cs
    │   │   │   ├── ZipEntryFactory.cs
    │   │   │   ├── ZipException.cs
    │   │   │   ├── ZipExtraData.cs
    │   │   │   ├── ZipFile.cs
    │   │   │   ├── ZipHelperStream.cs
    │   │   │   ├── ZipInputStream.cs
    │   │   │   ├── ZipNameTransform.cs
    │   │   │   └── ZipOutputStream.cs
    │   │   └── obj
    │   │       ├── Debug
    │   │       │   ├── ICSharpCode.SharpZipLib.dll
    │   │       │   ├── ICSharpCode.SharpZipLib.pdb
    │   │       │   └── TempPE
    │   │       ├── ICSharpCode.SharpZLib.csproj.FileList.txt
    │   │       └── Release
    │   │           └── TempPE
    │   ├── tests
    │   │   ├── AssemblyInfo.cs
    │   │   ├── BZip2
    │   │   │   └── Bzip2Tests.cs
    │   │   ├── Base
    │   │   │   └── InflaterDeflaterTests.cs
    │   │   ├── GZip
    │   │   │   └── GZipTests.cs
    │   │   ├── SharpZipLibTests.cmbx
    │   │   ├── SharpZipLibTests.csproj
    │   │   ├── SharpZipLibTests.csproj.user
    │   │   ├── SharpZipLibTests.prjx
    │   │   ├── SharpZipLibTests.sln
    │   │   ├── SharpZipLibTests.suo
    │   │   ├── Tar
    │   │   │   └── TarTests.cs
    │   │   ├── TestSupport
    │   │   │   ├── RingBuffer.cs
    │   │   │   └── Streams.cs
    │   │   ├── Zip
    │   │   │   └── ZipTests.cs
    │   │   ├── bin
    │   │   │   └── Debug
    │   │   ├── obj
    │   │   │   ├── Debug
    │   │   │   │   ├── ResolveAssemblyReference.cache
    │   │   │   │   └── TempPE
    │   │   │   └── SharpZipLibTests.csproj.FileList.txt
    │   │   └── tests.build
    │   └── uninstallGAC.bat
    ├── 报表二
    │   ├── CrystalReport1
    │   │   ├── CrystalReport1.csproj
    │   │   ├── Form1.Designer.cs
    │   │   ├── Form1.cs
    │   │   ├── Form1.resx
    │   │   ├── Program.cs
    │   │   ├── Properties
    │   │   │   ├── AssemblyInfo.cs
    │   │   │   ├── Resources.Designer.cs
    │   │   │   ├── Resources.resx
    │   │   │   ├── Settings.Designer.cs
    │   │   │   └── Settings.settings
    │   │   ├── bin
    │   │   │   └── Debug
    │   │   │       ├── CrystalReport1.exe
    │   │   │       ├── CrystalReport1.pdb
    │   │   │       └── CrystalReport1.vshost.exe
    │   │   └── obj
    │   │       ├── CrystalReport1.csproj.FileList.txt
    │   │       └── Debug
    │   │           ├── CrystalReport1.Form1.resources
    │   │           ├── CrystalReport1.Properties.Resources.resources
    │   │           ├── CrystalReport1.csproj.GenerateResource.Cache
    │   │           ├── CrystalReport1.exe
    │   │           ├── CrystalReport1.pdb
    │   │           ├── ResolveAssemblyReference.cache
    │   │           └── TempPE
    │   ├── CrystalReport1.sln
    │   ├── CrystalReport1.suo
    │   └── rpt1
    │       ├── CrystalReport1.cs
    │       ├── CrystalReport1.rpt
    │       ├── Form1.Designer.cs
    │       ├── Form1.cs
    │       ├── Program.cs
    │       ├── Properties
    │       │   ├── AssemblyInfo.cs
    │       │   ├── Resources.Designer.cs
    │       │   ├── Resources.resx
    │       │   ├── Settings.Designer.cs
    │       │   └── Settings.settings
    │       ├── bin
    │       │   └── Debug
    │       │       ├── rpt1.exe
    │       │       └── rpt1.pdb
    │       ├── obj
    │       │   ├── Debug
    │       │   │   ├── TempPE
    │       │   │   │   └── CrystalReport1.cs.dll
    │       │   │   ├── rpt1.CrystalReport1.rpt
    │       │   │   ├── rpt1.Properties.Resources.resources
    │       │   │   ├── rpt1.csproj.GenerateResource.Cache
    │       │   │   ├── rpt1.exe
    │       │   │   └── rpt1.pdb
    │       │   └── rpt1.csproj.FileList.txt
    │       ├── rpt1.csproj
    │       └── rpt1.csproj.user
    ├── 摇奖机
    │   ├── Source
    │   │   └── TransBall
    │   │       ├── App.ico
    │   │       ├── AssemblyInfo.cs
    │   │       ├── Images
    │   │       │   ├── Transball.bmp
    │   │       │   ├── btn.bmp
    │   │       │   └── btn2.bmp
    │   │       ├── InThread.cs
    │   │       ├── MainForm.cs
    │   │       ├── MainForm.resx
    │   │       ├── TransBall.csproj
    │   │       ├── TransBall.csproj.user
    │   │       ├── TransBall.sln
    │   │       ├── bin
    │   │       │   └── Debug
    │   │       │       ├── TransBall.exe
    │   │       │       └── TransBall.pdb
    │   │       └── obj
    │   │           └── Debug
    │   │               ├── TempPE
    │   │               ├── TransBall.MainForm.resources
    │   │               ├── TransBall.exe
    │   │               ├── TransBall.pdb
    │   │               └── temp
    │   └── Thumbs.db
    ├── 计算器
    │   ├── Additional Example 1
    │   │   ├── Additional Example 1.csproj
    │   │   ├── Additional Example 1.csproj.user
    │   │   ├── App.ico
    │   │   ├── AssemblyInfo.cs
    │   │   ├── bin
    │   │   │   └── Debug
    │   │   │       ├── Additional Example 1.exe
    │   │   │       ├── Additional Example 1.pdb
    │   │   │       └── Additional Example 1.vshost.exe
    │   │   ├── frmArithCalc.cs
    │   │   ├── frmArithCalc.resx
    │   │   ├── frmMDIForm.cs
    │   │   ├── frmMDIForm.resx
    │   │   └── obj
    │   │       ├── Additional Example 1.csproj.FileList.txt
    │   │       └── Debug
    │   │           ├── Additional Example 1.csproj.GenerateResource.Cache
    │   │           ├── Additional Example 1.exe
    │   │           ├── Additional Example 1.pdb
    │   │           ├── Calculator.frmArithCalc.resources
    │   │           ├── Calculator.frmMDI.resources
    │   │           └── TempPE
    │   ├── Additional Example 1.sln
    │   ├── Additional Example 1.suo
    │   ├── UpgradeLog.XML
    │   └── _UpgradeReport_Files
    │       ├── UpgradeReport.css
    │       ├── UpgradeReport.xslt
    │       ├── UpgradeReport_Minus.gif
    │       └── UpgradeReport_Plus.gif
    ├── 列车查询
    │   ├── Train
    │   │   └── Train
    │   │       ├── Business
    │   │       │   ├── AssemblyInfo.cs
    │   │       │   ├── Business.csproj
    │   │       │   ├── Business.csproj.user
    │   │       │   ├── Schedule.cs
    │   │       │   ├── bin
    │   │       │   │   └── Debug
    │   │       │   │       ├── Business.dll
    │   │       │   │       ├── Business.pdb
    │   │       │   │       ├── DataAccess.dll
    │   │       │   │       ├── DataAccess.pdb
    │   │       │   │       ├── common.dll
    │   │       │   │       ├── common.pdb
    │   │       │   │       ├── configure.xml
    │   │       │   │       ├── nunit.framework.dll
    │   │       │   │       └── nunit.framework.xml
    │   │       │   └── obj
    │   │       │       ├── Business.csproj.FileList.txt
    │   │       │       └── Debug
    │   │       │           ├── Business.dll
    │   │       │           ├── Business.pdb
    │   │       │           ├── ResolveAssemblyReference.cache
    │   │       │           ├── TempPE
    │   │       │           └── temp
    │   │       ├── DataAccess
    │   │       │   ├── DataAccess.csproj
    │   │       │   ├── DataAccess.csproj.user
    │   │       │   ├── DataBaseOperate.cs
    │   │       │   ├── Schedule.cs
    │   │       │   ├── bin
    │   │       │   │   └── Debug
    │   │       │   │       ├── DataAccess.dll
    │   │       │   │       ├── DataAccess.pdb
    │   │       │   │       ├── common.dll
    │   │       │   │       ├── common.pdb
    │   │       │   │       └── configure.xml
    │   │       │   └── obj
    │   │       │       ├── DataAccess.csproj.FileList.txt
    │   │       │       └── Debug
    │   │       │           ├── DataAccess.dll
    │   │       │           ├── DataAccess.pdb
    │   │       │           ├── ResolveAssemblyReference.cache
    │   │       │           ├── TempPE
    │   │       │           └── temp
    │   │       ├── NUnit-2.2.0.msi
    │   │       ├── UpgradeLog.XML
    │   │       ├── _UpgradeReport_Files
    │   │       │   ├── UpgradeReport.css
    │   │       │   ├── UpgradeReport.xslt
    │   │       │   ├── UpgradeReport_Minus.gif
    │   │       │   └── UpgradeReport_Plus.gif
    │   │       ├── common
    │   │       │   ├── Common.csproj
    │   │       │   ├── Data
    │   │       │   │   ├── AssemblyInfo.cs
    │   │       │   │   ├── ScheduleData.Designer.cs
    │   │       │   │   ├── ScheduleData.xsd
    │   │       │   │   └── ScheduleData.xsx
    │   │       │   ├── TrainConfiguration.cs
    │   │       │   ├── bin
    │   │       │   │   └── Debug
    │   │       │   │       ├── common.dll
    │   │       │   │       ├── common.pdb
    │   │       │   │       ├── configure.xml
    │   │       │   │       ├── nunit.framework.dll
    │   │       │   │       └── nunit.framework.xml
    │   │       │   ├── common.csproj.user
    │   │       │   └── obj
    │   │       │       ├── Common.csproj.FileList.txt
    │   │       │       └── Debug
    │   │       │           ├── ResolveAssemblyReference.cache
    │   │       │           ├── TempPE
    │   │       │           │   ├── Data.City.cs.dll
    │   │       │           │   ├── Data.Schedule.cs.dll
    │   │       │           │   ├── Data.ScheduleData.Designer.cs.dll
    │   │       │           │   ├── Data.ScheduleData.cs.dll
    │   │       │           │   ├── Data.ScheduleDetail.cs.dll
    │   │       │           │   └── data.schedule_detail.cs.dll
    │   │       │           ├── common.dll
    │   │       │           ├── common.pdb
    │   │       │           └── temp
    │   │       ├── train
    │   │       │   ├── App.ico
    │   │       │   ├── AssemblyInfo.cs
    │   │       │   ├── DataGridPrinter.cs
    │   │       │   ├── Train.csproj
    │   │       │   ├── TrainMain.cs
    │   │       │   ├── TrainMain.resx
    │   │       │   ├── app.config
    │   │       │   ├── bin
    │   │       │   │   └── Debug
    │   │       │   │       ├── Business.dll
    │   │       │   │       ├── Business.pdb
    │   │       │   │       ├── DataAccess.dll
    │   │       │   │       ├── DataAccess.pdb
    │   │       │   │       ├── common.dll
    │   │       │   │       ├── common.pdb
    │   │       │   │       ├── configure.xml
    │   │       │   │       ├── train.exe
    │   │       │   │       ├── train.exe.config
    │   │       │   │       ├── train.pdb
    │   │       │   │       ├── train.vshost.exe
    │   │       │   │       └── train.vshost.exe.config
    │   │       │   ├── configure.xml
    │   │       │   ├── obj
    │   │       │   │   ├── Debug
    │   │       │   │   │   ├── ResolveAssemblyReference.cache
    │   │       │   │   │   ├── TempPE
    │   │       │   │   │   ├── Train.TrainMain.resources
    │   │       │   │   │   ├── Train.csproj.GenerateResource.Cache
    │   │       │   │   │   ├── configure.xml
    │   │       │   │   │   ├── temp
    │   │       │   │   │   ├── train.exe
    │   │       │   │   │   └── train.pdb
    │   │       │   │   └── Train.csproj.FileList.txt
    │   │       │   └── train.csproj.user
    │   │       ├── train.sln
    │   │       └── train.suo
    │   ├── train_Data.MDF
    │   └── train_Log.LDF
    ├── 图书入库
    │   ├── App.ico
    │   ├── AssemblyInfo.cs
    │   ├── BookManagement.csproj
    │   ├── BookManagement.csproj.user
    │   ├── BookManagement.sln
    │   ├── BookManagement.suo
    │   ├── Thumbs.db
    │   ├── UpgradeLog.XML
    │   ├── _UpgradeReport_Files
    │   │   ├── UpgradeReport.css
    │   │   ├── UpgradeReport.xslt
    │   │   ├── UpgradeReport_Minus.gif
    │   │   └── UpgradeReport_Plus.gif
    │   ├── bin
    │   │   └── Debug
    │   │       ├── BookManagement.exe
    │   │       ├── BookManagement.pdb
    │   │       └── BookManagement.vshost.exe
    │   ├── frmAbout.cs
    │   ├── frmAbout.resx
    │   ├── frmMdiApplication.cs
    │   ├── frmMdiApplication.resx
    │   ├── frmNewBooks.cs
    │   ├── frmNewBooks.resx
    │   └── obj
    │       ├── BookManagement.csproj.FileList.txt
    │       └── Debug
    │           ├── BookManagement.csproj.GenerateResource.Cache
    │           ├── BookManagement.exe
    │           ├── BookManagement.frmAbout.resources
    │           ├── BookManagement.frmMdiApplication.resources
    │           ├── BookManagement.frmNewBooks.resources
    │           ├── BookManagement.pdb
    │           ├── BookManagement.projdata
    │           ├── TempPE
    │           └── temp
    ├── 学生管理
    │   ├── db_credence_Data.MDF
    │   ├── db_credence_Log.LDF
    │   └── 项目练习
    │       └── Property
    │           ├── Business
    │           │   ├── AssemblyInfo.cs
    │           │   ├── Business.csproj
    │           │   ├── Business.csproj.user
    │           │   ├── Login.cs
    │           │   ├── SetAdm.cs
    │           │   ├── bin
    │           │   │   └── Debug
    │           │   │       ├── Business.dll
    │           │   │       ├── Business.pdb
    │           │   │       ├── Data.dll
    │           │   │       ├── Data.pdb
    │           │   │       ├── DataAccess.dll
    │           │   │       └── DataAccess.pdb
    │           │   └── obj
    │           │       ├── Business.csproj.FileList.txt
    │           │       └── Debug
    │           │           ├── Business.dll
    │           │           ├── Business.pdb
    │           │           ├── Business.projdata
    │           │           ├── ResolveAssemblyReference.cache
    │           │           ├── TempPE
    │           │           └── temp
    │           ├── Data
    │           │   ├── AdmInfo.cs
    │           │   ├── AssemblyInfo.cs
    │           │   ├── Data.csproj
    │           │   ├── Data.csproj.user
    │           │   ├── SubjectInfo.cs
    │           │   ├── UserJobInfo.cs
    │           │   ├── WarrantInfo.cs
    │           │   ├── bin
    │           │   │   └── Debug
    │           │   │       ├── Data.dll
    │           │   │       └── Data.pdb
    │           │   └── obj
    │           │       ├── Data.csproj.FileList.txt
    │           │       └── Debug
    │           │           ├── Data.dll
    │           │           ├── Data.pdb
    │           │           ├── Data.projdata
    │           │           ├── TempPE
    │           │           └── temp
    │           ├── DataAccess
    │           │   ├── Adm.cs
    │           │   ├── AssemblyInfo.cs
    │           │   ├── BaseOperate.cs
    │           │   ├── DataAccess.csproj
    │           │   ├── DataAccess.csproj.user
    │           │   ├── bin
    │           │   │   └── Debug
    │           │   │       ├── Data.dll
    │           │   │       ├── Data.pdb
    │           │   │       ├── DataAccess.dll
    │           │   │       └── DataAccess.pdb
    │           │   └── obj
    │           │       ├── DataAccess.csproj.FileList.txt
    │           │       └── Debug
    │           │           ├── DataAccess.dll
    │           │           ├── DataAccess.pdb
    │           │           ├── DataAccess.projdata
    │           │           ├── ResolveAssemblyReference.cache
    │           │           ├── TempPE
    │           │           └── temp
    │           ├── Property.sln
    │           ├── Property.suo
    │           ├── UpgradeLog.XML
    │           ├── WinForms
    │           │   ├── App.ico
    │           │   ├── AssemblyInfo.cs
    │           │   ├── WinForms.csproj
    │           │   ├── WinForms.csproj.user
    │           │   ├── bin
    │           │   │   └── Debug
    │           │   │       ├── Business.dll
    │           │   │       ├── Business.pdb
    │           │   │       ├── Data.dll
    │           │   │       ├── Data.pdb
    │           │   │       ├── DataAccess.dll
    │           │   │       ├── DataAccess.pdb
    │           │   │       ├── WinForms.exe
    │           │   │       ├── WinForms.pdb
    │           │   │       └── WinForms.vshost.exe
    │           │   ├── frmAddAdm.cs
    │           │   ├── frmAddAdm.resx
    │           │   ├── frmAdm.cs
    │           │   ├── frmAdm.resx
    │           │   ├── frmDelAdm.cs
    │           │   ├── frmDelAdm.resx
    │           │   ├── frmLogin.cs
    │           │   ├── frmLogin.resx
    │           │   ├── frmMain.cs
    │           │   ├── frmMain.resx
    │           │   ├── frmSelectAdm.cs
    │           │   ├── frmSelectAdm.resx
    │           │   ├── frmUpdateAdm.cs
    │           │   ├── frmUpdateAdm.resx
    │           │   ├── frmUserPasswordUpdata.cs
    │           │   ├── frmUserPasswordUpdata.resx
    │           │   ├── image
    │           │   │   ├── add.bmp
    │           │   │   ├── delete.bmp
    │           │   │   ├── esce.bmp
    │           │   │   ├── save.bmp
    │           │   │   ├── select.bmp
    │           │   │   ├── start.bmp
    │           │   │   ├── update.bmp
    │           │   │   ├── 凭证 结算.bmp
    │           │   │   ├── 公司.bmp
    │           │   │   ├── 帮助.bmp
    │           │   │   ├── 报表.bmp
    │           │   │   ├── 会计凭证.bmp
    │           │   │   ├── 凭证审察.bmp
    │           │   │   ├── 凭证录入.bmp
    │           │   │   ├── 凭证总汇.bmp
    │           │   │   ├── 凭证管理.bmp
    │           │   │   ├── 凭证结算.bmp
    │           │   │   ├── 员公增加.bmp
    │           │   │   ├── 数据备份.bmp
    │           │   │   ├── 数据还原.bmp
    │           │   │   ├── 系统管理.bmp
    │           │   │   ├── 账目佘额.bmp
    │           │   │   ├── 账目查询.bmp
    │           │   │   ├── 账目科目.bmp
    │           │   │   ├── 退出系统.bmp
    │           │   │   ├── 按凭证查询 .bmp
    │           │   │   ├── 修改宇密码.bmp
    │           │   │   ├── 凭证号查询.bmp
    │           │   │   ├── 初始化数据.bmp
    │           │   │   ├── 增加科目信.bmp
    │           │   │   ├── 总账目查询.bmp
    │           │   │   ├── 按科目打印.bmp
    │           │   │   ├── 查询科目信.bmp
    │           │   │   ├── 单位基本信息.bmp
    │           │   │   ├── 初始化使用时间.bmp
    │           │   │   ├── 初始化科目金额.bmp
    │           │   │   ├── 操作员基本设置.bmp
    │           │   │   ├── 科目前编号查询.bmp
    │           │   │   ├── 会计科目增册改查.bmp
    │           │   │   └── 财物凭证管理系统主界面.jpg
    │           │   └── obj
    │           │       ├── Debug
    │           │       │   ├── ResolveAssemblyReference.cache
    │           │       │   ├── TempPE
    │           │       │   ├── WinForms.csproj.GenerateResource.Cache
    │           │       │   ├── WinForms.exe
    │           │       │   ├── WinForms.frmAddAdm.resources
    │           │       │   ├── WinForms.frmAdm.resources
    │           │       │   ├── WinForms.frmAdmInfo.resources
    │           │       │   ├── WinForms.frmDelAdm.resources
    │           │       │   ├── WinForms.frmLogin.resources
    │           │       │   ├── WinForms.frmMain.resources
    │           │       │   ├── WinForms.frmSelectAdm.resources
    │           │       │   ├── WinForms.frmUpdateAdm.resources
    │           │       │   ├── WinForms.frmUserPasswordUpdata.resources
    │           │       │   ├── WinForms.pdb
    │           │       │   ├── WinForms.projdata
    │           │       │   └── temp
    │           │       └── WinForms.csproj.FileList.txt
    │           └── _UpgradeReport_Files
    │               ├── UpgradeReport.css
    │               ├── UpgradeReport.xslt
    │               ├── UpgradeReport_Minus.gif
    │               └── UpgradeReport_Plus.gif
    ├── 三层界面(有注释(全))
    │   ├── Desktop_.ini
    │   ├── Student
    │   │   ├── App.ico
    │   │   ├── AssemblyInfo.cs
    │   │   ├── Desktop_.ini
    │   │   ├── Student.csproj
    │   │   ├── Student.csproj.user
    │   │   ├── Student.suo
    │   │   ├── Thumbs.db
    │   │   ├── UpgradeLog.XML
    │   │   ├── _UpgradeReport_Files
    │   │   │   ├── UpgradeReport.css
    │   │   │   ├── UpgradeReport.xslt
    │   │   │   ├── UpgradeReport_Minus.gif
    │   │   │   └── UpgradeReport_Plus.gif
    │   │   ├── bin
    │   │   │   ├── Debug
    │   │   │   │   ├── Desktop_.ini
    │   │   │   │   ├── Student.exe
    │   │   │   │   ├── Student.pdb
    │   │   │   │   ├── Student.vshost.exe
    │   │   │   │   ├── StudentLib.dll
    │   │   │   │   └── StudentLib.pdb
    │   │   │   └── Desktop_.ini
    │   │   ├── frmMain.cs
    │   │   ├── frmMain.resx
    │   │   ├── frmNewClass.cs
    │   │   ├── frmNewClass.resx
    │   │   ├── frmNewCourse.cs
    │   │   ├── frmNewCourse.resx
    │   │   ├── frmNewStudent.cs
    │   │   ├── frmNewStudent.resx
    │   │   ├── frmSubject.cs
    │   │   ├── frmSubject.resx
    │   │   ├── frmUpdateClass.cs
    │   │   ├── frmUpdateClass.resx
    │   │   ├── frmUpdateCourse.cs
    │   │   ├── frmUpdateCourse.resx
    │   │   ├── frmUpdateStudent.cs
    │   │   ├── frmUpdateStudent.resx
    │   │   └── obj
    │   │       ├── Debug
    │   │       │   ├── Desktop_.ini
    │   │       │   ├── Student.csproj.GenerateResource.Cache
    │   │       │   ├── Student.exe
    │   │       │   ├── Student.frmMain.resources
    │   │       │   ├── Student.frmNewClass.resources
    │   │       │   ├── Student.frmNewCourse.resources
    │   │       │   ├── Student.frmNewStudent.resources
    │   │       │   ├── Student.frmSubject.resources
    │   │       │   ├── Student.frmUpdateClass.resources
    │   │       │   ├── Student.frmUpdateCourse.resources
    │   │       │   ├── Student.frmUpdateStudent.resources
    │   │       │   ├── Student.pdb
    │   │       │   ├── Student.projdata
    │   │       │   ├── TempPE
    │   │       │   │   └── Desktop_.ini
    │   │       │   └── temp
    │   │       │       └── Desktop_.ini
    │   │       ├── Desktop_.ini
    │   │       └── Student.csproj.FileList.txt
    │   ├── StudentLib
    │   │   ├── AssemblyInfo.cs
    │   │   ├── Business
    │   │   │   ├── Desktop_.ini
    │   │   │   └── StudentSystem.cs
    │   │   ├── Common
    │   │   │   ├── DataBaseOperate.cs
    │   │   │   └── Desktop_.ini
    │   │   ├── DataAccess
    │   │   │   ├── Classs.cs
    │   │   │   ├── Courses.cs
    │   │   │   ├── Desktop_.ini
    │   │   │   ├── Scores.cs
    │   │   │   ├── Students.cs
    │   │   │   └── Subjects.cs
    │   │   ├── Desktop_.ini
    │   │   ├── StudentLib.csproj
    │   │   ├── StudentLib.csproj.user
    │   │   ├── StudentLib.sln
    │   │   ├── StudentLib.suo
    │   │   ├── UpgradeLog.XML
    │   │   ├── _UpgradeReport_Files
    │   │   │   ├── UpgradeReport.css
    │   │   │   ├── UpgradeReport.xslt
    │   │   │   ├── UpgradeReport_Minus.gif
    │   │   │   └── UpgradeReport_Plus.gif
    │   │   ├── bin
    │   │   │   ├── Debug
    │   │   │   │   ├── Desktop_.ini
    │   │   │   │   ├── StudentLib.dll
    │   │   │   │   └── StudentLib.pdb
    │   │   │   └── Desktop_.ini
    │   │   └── obj
    │   │       ├── Debug
    │   │       │   ├── Desktop_.ini
    │   │       │   ├── StudentLib.dll
    │   │       │   ├── StudentLib.pdb
    │   │       │   ├── StudentLib.projdata
    │   │       │   ├── TempPE
    │   │       │   │   └── Desktop_.ini
    │   │       │   └── temp
    │   │       │       └── Desktop_.ini
    │   │       └── Desktop_.ini
    │   ├── 三层项目要求.txt
    │   └── 三层架构数据库
    │       ├── Desktop_.ini
    │       ├── stu.ldf
    │       └── stu.mdf
    ├── 资源浏览器
    │   ├── App.ico
    │   ├── AssemblyInfo.cs
    │   ├── Example 2.csproj
    │   ├── Example 2.csproj.user
    │   ├── Example 2.sln
    │   ├── Example 2.suo
    │   ├── Form1.cs
    │   ├── Form1.resx
    │   ├── UpgradeLog.XML
    │   ├── _UpgradeReport_Files
    │   │   ├── UpgradeReport.css
    │   │   ├── UpgradeReport.xslt
    │   │   ├── UpgradeReport_Minus.gif
    │   │   └── UpgradeReport_Plus.gif
    │   ├── bin
    │   │   └── Debug
    │   │       ├── Example 2.exe
    │   │       ├── Example 2.pdb
    │   │       └── Example 2.vshost.exe
    │   └── obj
    │       ├── Debug
    │       │   ├── Example 2.csproj.GenerateResource.Cache
    │       │   ├── Example 2.exe
    │       │   ├── Example 2.pdb
    │       │   ├── Example 2.projdata
    │       │   ├── Example_2.frmTreeList.resources
    │       │   ├── TempPE
    │       │   └── temp
    │       └── Example 2.csproj.FileList.txt
    ├── 数据库连接.net
    │   ├── App.ico
    │   ├── AssemblyInfo.cs
    │   ├── Backup
    │   │   ├── App.ico
    │   │   ├── AssemblyInfo.cs
    │   │   ├── Backup
    │   │   │   ├── App.ico
    │   │   │   ├── AssemblyInfo.cs
    │   │   │   ├── Form1.cs
    │   │   │   ├── Form1.resx
    │   │   │   ├── WindowsApplication17.csproj
    │   │   │   ├── WindowsApplication17.csproj.user
    │   │   │   └── WindowsApplication17.sln
    │   │   ├── Form1.cs
    │   │   ├── Form1.resx
    │   │   ├── UpgradeLog.XML
    │   │   ├── WindowsApplication17.csproj
    │   │   ├── WindowsApplication17.csproj.user
    │   │   ├── WindowsApplication17.sln
    │   │   ├── WindowsApplication17.suo
    │   │   ├── _UpgradeReport_Files
    │   │   │   ├── UpgradeReport.css
    │   │   │   ├── UpgradeReport.xslt
    │   │   │   ├── UpgradeReport_Minus.gif
    │   │   │   └── UpgradeReport_Plus.gif
    │   │   ├── bin
    │   │   │   └── Debug
    │   │   │       └── WindowsApplication17.vshost.exe
    │   │   └── obj
    │   │       ├── Debug
    │   │       │   ├── TempPE
    │   │       │   ├── WindowsApplication17.Form1.resources
    │   │       │   └── WindowsApplication17.csproj.GenerateResource.Cache
    │   │       └── WindowsApplication17.csproj.FileList.txt
    │   ├── Form1.cs
    │   ├── Form1.resx
    │   ├── UpgradeLog.XML
    │   ├── WindowsApplication17.csproj
    │   ├── WindowsApplication17.csproj.user
    │   ├── WindowsApplication17.sln
    │   ├── WindowsApplication17.suo
    │   ├── _UpgradeReport_Files
    │   │   ├── Thumbs.db
    │   │   ├── UpgradeReport.css
    │   │   ├── UpgradeReport.xslt
    │   │   ├── UpgradeReport_Minus.gif
    │   │   └── UpgradeReport_Plus.gif
    │   ├── bin
    │   │   └── Debug
    │   │       ├── WindowsApplication17.exe
    │   │       ├── WindowsApplication17.pdb
    │   │       └── WindowsApplication17.vshost.exe
    │   └── obj
    │       ├── Debug
    │       │   ├── TempPE
    │       │   ├── WindowsApplication17.Form1.resources
    │       │   ├── WindowsApplication17.csproj.GenerateResource.Cache
    │       │   ├── WindowsApplication17.exe
    │       │   ├── WindowsApplication17.exe.incr
    │       │   ├── WindowsApplication17.pdb
    │       │   └── temp
    │       └── WindowsApplication17.csproj.FileList.txt
    └── 读取数据库中二进制数据
        ├── App.ico
        ├── AssemblyInfo.cs
        ├── Backup
        │   ├── App.ico
        │   ├── AssemblyInfo.cs
        │   ├── Form1.cs
        │   ├── Form1.resx
        │   ├── 读取数据库中Image.csproj
        │   ├── 读取数据库中Image.csproj.user
        │   └── 读取数据库中Image.sln
        ├── Form1.cs
        ├── Form1.cs.bak
        ├── Form1.resx
        ├── UpgradeLog.XML
        ├── _UpgradeReport_Files
        │   ├── UpgradeReport.css
        │   ├── UpgradeReport.xslt
        │   ├── UpgradeReport_Minus.gif
        │   └── UpgradeReport_Plus.gif
        ├── bin
        │   └── Debug
        │       ├── temp.bmp
        │       ├── temp.gif
        │       ├── tmp.gif
        │       ├── 读取数据库中Image.exe
        │       ├── 读取数据库中Image.pdb
        │       └── 读取数据库中Image.vshost.exe
        ├── obj
        │   ├── Debug
        │   │   ├── TempPE
        │   │   ├── temp
        │   │   ├── 读取数据库中Image.csproj.GenerateResource.Cache
        │   │   ├── 读取数据库中Image.exe
        │   │   ├── 读取数据库中Image.exe.incr
        │   │   ├── 读取数据库中Image.pdb
        │   │   └── 读取数据库中二进制数据.Form1.resources
        │   └── 读取数据库中Image.csproj.FileList.txt
        ├── 读取数据库中Image.csproj
        ├── 读取数据库中Image.csproj.user
        ├── 读取数据库中Image.sln
        └── 读取数据库中Image.suo

292 directories, 1023 files


网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警