在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → C#-100个小例子

C#-100个小例子

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:4.60M
  • 下载次数:3
  • 浏览次数:130
  • 发布时间:2021-03-10
  • 实例类别:一般编程问题
  • 发 布 人:好学IT男
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
里面有100个c#小例子,压缩包文件, 初学者看看会很有帮助!
【实例截图】
【核心代码】
6b8da5d3-5805-49dc-ae36-2cf3c119b3cf
└── C#-51CTO下载-100个小例子
└── 100个小例子
├── readme.txt
├── 实例01
│   ├── 01.bmp
│   ├── csc编译器路径.txt
│   ├── hello.cs
│   ├── hello.exe
│   ├── HELLO.SLN
│   └── HELLO.SUO
├── 实例02
│   ├── 02.bmp
│   ├── hello.cs
│   ├── hello.exe
│   ├── HELLO.SLN
│   └── HELLO.SUO
├── 实例03
│   ├── 03.bmp
│   ├── listArg0.cs
│   ├── listArg0.exe
│   ├── listArg0.sln
│   └── listArg0.suo
├── 实例04
│   ├── 04.bmp
│   ├── predefinedTypes.cs
│   └── predefinedTypes.exe
├── 实例05
│   ├── 05.bmp
│   ├── typeTrans.cs
│   └── typeTrans.exe
├── 实例06
│   ├── 06.bmp
│   ├── ifApp.cs
│   └── ifApp.exe
├── 实例07
│   ├── 07.bmp
│   ├── csc编译器路径.txt
│   ├── switchApp.cs
│   ├── switchApp.exe
│   └── switchApp.suo
├── 实例08
│   ├── 08.bmp
│   ├── forApp.cs
│   └── forApp.exe
├── 实例09
│   ├── 09.bmp
│   ├── whileApp.cs
│   └── whileApp.exe
├── 实例10
│   ├── 10.bmp
│   ├── doWhileApp.cs
│   └── doWhileApp.exe
├── 实例100
│   ├── 100.bmp
│   ├── BrickOut
│   │   ├── AssemblyInfo.cs
│   │   ├── Backup
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Ball.cs
│   │   │   ├── Brick.cs
│   │   │   ├── BrickOut.csproj
│   │   │   ├── BrickOut.csproj.user
│   │   │   ├── BrickOut.sln
│   │   │   ├── BrickOut.suo
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.resx
│   │   │   ├── GameObject.cs
│   │   │   ├── licenses.licx
│   │   │   ├── Paddle.cs
│   │   │   ├── Row.cs
│   │   │   ├── Score.cs
│   │   │   ├── SpeedDialog.cs
│   │   │   └── SpeedDialog.resx
│   │   ├── Ball.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── ball.gif
│   │   │   ├── BallOut.wav
│   │   │   ├── brick.gif
│   │   │   ├── BrickHit.wav
│   │   │   ├── BrickOut.exe
│   │   │   ├── BrickOut.pdb
│   │   │   ├── BrickOut.vshost.exe
│   │   │   ├── paddle.gif
│   │   │   ├── PaddleHit.wav
│   │   │   └── WallHit.wav
│   │   ├── Brick.cs
│   │   ├── BrickOut.csproj
│   │   ├── BrickOut.csproj.user
│   │   ├── BrickOut.sln
│   │   ├── BrickOut.suo
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── GameObject.cs
│   │   ├── licenses.licx
│   │   ├── obj
│   │   │   ├── BrickOut.csproj.FileList.txt
│   │   │   └── Debug
│   │   │   ├── BrickOut.csproj.GenerateResource.Cache
│   │   │   ├── BrickOut.exe
│   │   │   ├── BrickOut.exe.incr
│   │   │   ├── BrickOut.exe.licenses
│   │   │   ├── BrickOut.Form1.resources
│   │   │   ├── BrickOut.pdb
│   │   │   ├── BrickOut.projdata
│   │   │   └── BrickOut.SpeedDialog.resources
│   │   ├── Paddle.cs
│   │   ├── RevErr.txt
│   │   ├── Row.cs
│   │   ├── Score.cs
│   │   ├── SpeedDialog.cs
│   │   ├── SpeedDialog.resx
│   │   ├── UpgradeLog2.XML
│   │   ├── UpgradeLog3.XML
│   │   ├── UpgradeLog.XML
│   │   └── _UpgradeReport_Files
│   │   ├── UpgradeReport.css
│   │   ├── UpgradeReport_Minus.gif
│   │   ├── UpgradeReport_Plus.gif
│   │   └── UpgradeReport.xslt
│   └── Thumbs.db
├── 实例11
│   ├── 11.bmp
│   ├── foreachApp.cs
│   └── foreachApp.exe
├── 实例12
│   ├── 12.bmp
│   ├── matrixMultiply.cs
│   └── matrixMultiply.exe
├── 实例13
│   ├── 13.bmp
│   ├── jaggedArray.cs
│   └── jaggedArray.exe
├── 实例14
│   ├── 14.bmp
│   ├── enumApp.cs
│   └── enumApp.exe
├── 实例15
│   ├── 15.bmp
│   ├── bitOpt.cs
│   └── bitOpt.exe
├── 实例16
│   ├── 16.bmp
│   ├── fileApp.cs
│   ├── fileApp.exe
│   └── myfile.txt
├── 实例17
│   ├── 17.bmp
│   ├── myClass.cs
│   └── myClass.exe
├── 实例18
│   ├── 18.bmp
│   ├── rectangle.cs
│   └── rectangle.exe
├── 实例19
│   ├── 19.bmp
│   ├── stackApp.cs
│   └── stackApp.exe
├── 实例20
│   ├── 20.bmp
│   ├── area.cs
│   └── area.exe
├── 实例21
│   ├── 21.bmp
│   ├── myFirstWinApp
│   │   ├── AssemblyInfo.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── myFirstWinApp.exe
│   │   │   ├── myFirstWinApp.pdb
│   │   │   ├── myFirstWinApp.publish
│   │   │   │   ├── autorun.inf
│   │   │   │   ├── myFirstWinApp_1_0_0_0
│   │   │   │   │   ├── myFirstWinApp.exe.deploy
│   │   │   │   │   └── myFirstWinApp.exe.manifest
│   │   │   │   ├── myFirstWinApp.application
│   │   │   │   └── setup.exe
│   │   │   └── myFirstWinApp.vshost.exe
│   │   ├── Form1.cs
│   │   ├── myFirstWinApp.csproj
│   │   ├── myFirstWinApp.csproj.old
│   │   ├── myFirstWinApp.csproj.user
│   │   ├── myFirstWinApp.csproj.user.old
│   │   ├── myFirstWinApp.sln
│   │   ├── myFirstWinApp.suo
│   │   ├── myFirstWinApp_TemporaryKey.pfx
│   │   └── obj
│   │   ├── Debug
│   │   │   ├── myFirstWinApp.exe
│   │   │   ├── myFirstWinApp.exe.incr
│   │   │   ├── myFirstWinApp.pdb
│   │   │   ├── myFirstWinApp.projdata
│   │   │   └── myFirstWinApp.projdata1
│   │   └── myFirstWinApp.csproj.FileList.txt
│   └── Thumbs.db
├── 实例22
│   ├── 22.bmp
│   ├── imageView
│   │   ├── AssemblyInfo.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── imageView.exe
│   │   │   ├── imageView.pdb
│   │   │   └── imageView.vshost.exe
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── Form2.cs
│   │   ├── Form2.resx
│   │   ├── imageView.csproj
│   │   ├── imageView.csproj.old
│   │   ├── imageView.csproj.user
│   │   ├── imageView.csproj.user.old
│   │   ├── imageView.sln
│   │   ├── imageView.suo
│   │   ├── licenses.licx
│   │   └── obj
│   │   ├── Debug
│   │   │   ├── imageView.csproj.GenerateResource.Cache
│   │   │   ├── imageView.exe
│   │   │   ├── imageView.exe.incr
│   │   │   ├── imageView.exe.licenses
│   │   │   ├── imageView.Form1.resources
│   │   │   ├── imageView.pdb
│   │   │   ├── imageView.projdata
│   │   │   └── imageView.projdata1
│   │   └── imageView.csproj.FileList.txt
│   └── Thumbs.db
├── 实例23
│   ├── 23.bmp
│   ├── catchMe
│   │   ├── app.config
│   │   ├── AssemblyInfo.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── catchMe.exe
│   │   │   ├── catchMe.exe.config
│   │   │   ├── catchMe.pdb
│   │   │   ├── catchMe.vshost.exe
│   │   │   └── catchMe.vshost.exe.config
│   │   ├── catchMe.csproj
│   │   ├── catchMe.csproj.user
│   │   ├── catchMe.sln
│   │   ├── catchMe.suo
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── licenses.licx
│   │   ├── obj
│   │   │   ├── catchMe.csproj.FileList.txt
│   │   │   └── Debug
│   │   │   ├── catchMe.csproj.GenerateResource.Cache
│   │   │   ├── catchMe.exe
│   │   │   ├── catchMe.exe.incr
│   │   │   ├── catchMe.exe.licenses
│   │   │   ├── catchMe.Form1.resources
│   │   │   ├── catchMe.pdb
│   │   │   └── catchMe.projdata
│   │   ├── UpgradeLog.XML
│   │   └── _UpgradeReport_Files
│   │   ├── UpgradeReport.css
│   │   ├── UpgradeReport_Minus.gif
│   │   ├── UpgradeReport_Plus.gif
│   │   └── UpgradeReport.xslt
│   └── Thumbs.db
├── 实例24
│   ├── 24.bmp
│   ├── statusApp
│   │   ├── AssemblyInfo.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── statusApp.exe
│   │   │   ├── statusApp.pdb
│   │   │   └── statusApp.vshost.exe
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   ├── statusApp.csproj.GenerateResource.Cache
│   │   │   │   ├── statusApp.exe
│   │   │   │   ├── statusApp.exe.incr
│   │   │   │   ├── statusApp.Form1.resources
│   │   │   │   ├── statusApp.pdb
│   │   │   │   └── statusApp.projdata
│   │   │   └── statusApp.csproj.FileList.txt
│   │   ├── statusApp.csproj
│   │   ├── statusApp.csproj.user
│   │   ├── statusApp.sln
│   │   ├── statusApp.suo
│   │   ├── UpgradeLog.XML
│   │   └── _UpgradeReport_Files
│   │   ├── UpgradeReport.css
│   │   ├── UpgradeReport_Minus.gif
│   │   ├── UpgradeReport_Plus.gif
│   │   └── UpgradeReport.xslt
│   └── Thumbs.db
├── 实例25
│   ├── 25.bmp
│   ├── menuApp
│   │   ├── AssemblyInfo.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── menuApp.exe
│   │   │   ├── menuApp.pdb
│   │   │   └── menuApp.vshost.exe
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── licenses.licx
│   │   ├── menuApp.csproj
│   │   ├── menuApp.csproj.user
│   │   ├── menuApp.sln
│   │   ├── menuApp.suo
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   ├── menuApp.csproj.GenerateResource.Cache
│   │   │   │   ├── menuApp.exe
│   │   │   │   ├── menuApp.exe.incr
│   │   │   │   ├── menuApp.exe.licenses
│   │   │   │   ├── menuApp.Form1.resources
│   │   │   │   ├── menuApp.pdb
│   │   │   │   └── menuApp.projdata
│   │   │   └── menuApp.csproj.FileList.txt
│   │   ├── UpgradeLog.XML
│   │   └── _UpgradeReport_Files
│   │   ├── UpgradeReport.css
│   │   ├── UpgradeReport_Minus.gif
│   │   ├── UpgradeReport_Plus.gif
│   │   └── UpgradeReport.xslt
│   └── Thumbs.db
├── 实例26
│   ├── 26.bmp
│   └── toolbarApp
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── toolbarApp.exe
│   │   ├── toolbarApp.pdb
│   │   └── toolbarApp.vshost.exe
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── licenses.licx
│   ├── obj
│   │   ├── Debug
│   │   │   ├── toolbarApp.csproj.GenerateResource.Cache
│   │   │   ├── toolbarApp.exe
│   │   │   ├── toolbarApp.exe.incr
│   │   │   ├── toolbarApp.exe.licenses
│   │   │   ├── toolbarApp.Form1.resources
│   │   │   ├── toolbarApp.pdb
│   │   │   └── toolbarApp.projdata
│   │   └── toolbarApp.csproj.FileList.txt
│   ├── red.jpg
│   ├── toolbarApp.csproj
│   ├── toolbarApp.csproj.old
│   ├── toolbarApp.csproj.user
│   ├── toolbarApp.csproj.user.old
│   ├── toolbarApp.sln
│   └── toolbarApp.suo
├── 实例27
│   ├── 27.bmp
│   ├── clock
│   │   ├── AssemblyInfo.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── clock.exe
│   │   │   ├── clock.pdb
│   │   │   └── clock.vshost.exe
│   │   ├── clock.csproj
│   │   ├── clock.csproj.old
│   │   ├── clock.csproj.user
│   │   ├── clock.csproj.user.old
│   │   ├── clock.sln
│   │   ├── clock.suo
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── licenses.licx
│   │   └── obj
│   │   ├── clock.csproj.FileList.txt
│   │   └── Debug
│   │   ├── clock.csproj.GenerateResource.Cache
│   │   ├── clock.exe
│   │   ├── clock.exe.incr
│   │   ├── clock.exe.licenses
│   │   ├── clock.Form1.resources
│   │   ├── clock.pdb
│   │   └── clock.projdata
│   ├── MaskedTextBox
│   │   ├── AssemblyInfo.cs
│   │   ├── BIN
│   │   │   └── Debug
│   │   │   ├── MaskedTextBox.dll
│   │   │   └── MaskedTextBox.pdb
│   │   ├── licenses.licx
│   │   ├── MaskedTextBox.csproj
│   │   ├── MaskedTextBox.csproj.old
│   │   ├── MaskedTextBox.csproj.user
│   │   ├── MaskedTextBox.csproj.user.old
│   │   ├── MaskedTextBox.sln
│   │   ├── MaskedTextBox.suo
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   ├── MaskedTextBox.csproj.GenerateResource.Cache
│   │   │   │   ├── MaskedTextBox.dll
│   │   │   │   ├── MaskedTextBox.dll.incr
│   │   │   │   ├── MaskedTextBox.MaskedTextBox.resources
│   │   │   │   ├── MaskedTextBox.pdb
│   │   │   │   └── MaskedTextBox.projdata
│   │   │   └── MaskedTextBox.csproj.FileList.txt
│   │   ├── UserControl1.cs
│   │   └── UserControl1.resx
│   └── Thumbs.db
├── 实例28
│   └── ipBox
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   ├── Debug
│   │   │   ├── ipBox.dll
│   │   │   └── ipBox.pdb
│   │   └── Release
│   │   └── ipBox.dll
│   ├── ipBox.csproj
│   ├── ipBox.csproj.user
│   ├── ipBox.sln
│   ├── ipBox.suo
│   ├── obj
│   │   ├── Debug
│   │   │   ├── ipBox.dll
│   │   │   ├── ipBox.dll.incr
│   │   │   ├── ipBox.pdb
│   │   │   └── ipBox.projdata
│   │   ├── ipBox.csproj.FileList.txt
│   │   └── Release
│   │   ├── ipBox.csproj.GenerateResource.Cache
│   │   ├── ipBox.dll
│   │   ├── ipBox.dll.incr
│   │   ├── ipBox.ipBox.resources
│   │   └── ipBox.projdata
│   ├── UpgradeLog.XML
│   ├── _UpgradeReport_Files
│   │   ├── UpgradeReport.css
│   │   ├── UpgradeReport_Minus.gif
│   │   ├── UpgradeReport_Plus.gif
│   │   └── UpgradeReport.xslt
│   ├── UserControl1.cs
│   └── UserControl1.resx
├── 实例29
│   ├── 29.bmp
│   ├── Thumbs.db
│   └── useIPBox
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── ipBox.dll
│   │   ├── useIPBox.exe
│   │   ├── useIPBox.pdb
│   │   └── useIPBox.vshost.exe
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── ipBox.dll
│   ├── licenses.licx
│   ├── obj
│   │   ├── Debug
│   │   │   ├── ResolveAssemblyReference.cache
│   │   │   ├── useIPBox.csproj.GenerateResource.Cache
│   │   │   ├── useIPBox.exe
│   │   │   ├── useIPBox.exe.incr
│   │   │   ├── useIPBox.exe.licenses
│   │   │   ├── useIPBox.Form1.resources
│   │   │   ├── useIPBox.pdb
│   │   │   └── useIPBox.projdata
│   │   └── useIPBox.csproj.FileList.txt
│   ├── UpgradeLog.XML
│   ├── _UpgradeReport_Files
│   │   ├── UpgradeReport.css
│   │   ├── UpgradeReport_Minus.gif
│   │   ├── UpgradeReport_Plus.gif
│   │   └── UpgradeReport.xslt
│   ├── useIPBox.csproj
│   ├── useIPBox.csproj.user
│   ├── useIPBox.sln
│   └── useIPBox.suo
├── 实例30
│   ├── 30.bmp
│   ├── Thumbs.db
│   └── useTreeView
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── useTreeView.exe
│   │   ├── useTreeView.pdb
│   │   └── useTreeView.vshost.exe
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── image
│   │   ├── CLSDFOLD.ICO
│   │   ├── DRIVE.ICO
│   │   ├── MYCOMP.ICO
│   │   └── OPENFOLD.ICO
│   ├── licenses.licx
│   ├── obj
│   │   ├── Debug
│   │   │   ├── useTreeView.csproj.GenerateResource.Cache
│   │   │   ├── useTreeView.exe
│   │   │   ├── useTreeView.exe.incr
│   │   │   ├── useTreeView.exe.licenses
│   │   │   ├── useTreeView.Form1.resources
│   │   │   ├── useTreeView.pdb
│   │   │   └── useTreeView.projdata
│   │   └── useTreeView.csproj.FileList.txt
│   ├── UpgradeLog.XML
│   ├── _UpgradeReport_Files
│   │   ├── UpgradeReport.css
│   │   ├── UpgradeReport_Minus.gif
│   │   ├── UpgradeReport_Plus.gif
│   │   └── UpgradeReport.xslt
│   ├── useTreeView.csproj
│   ├── useTreeView.csproj.user
│   ├── useTreeView.sln
│   └── useTreeView.suo
├── 实例31
│   ├── 31.bmp
│   ├── FolderBrowser
│   │   ├── AssemblyInfo.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── FolderBrowser.exe
│   │   │   ├── FolderBrowser.pdb
│   │   │   └── FolderBrowser.vshost.exe
│   │   ├── FolderBrowser.csproj
│   │   ├── FolderBrowser.csproj.user
│   │   ├── FolderBrowser.sln
│   │   ├── FolderBrowser.suo
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── image
│   │   │   ├── CLSDFOLD.ICO
│   │   │   ├── DRIVE.ICO
│   │   │   ├── MYCOMP.ICO
│   │   │   └── OPENFOLD.ICO
│   │   ├── licenses.licx
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   ├── FolderBrowser.csproj.GenerateResource.Cache
│   │   │   │   ├── FolderBrowser.exe
│   │   │   │   ├── FolderBrowser.exe.incr
│   │   │   │   ├── FolderBrowser.exe.licenses
│   │   │   │   ├── FolderBrowser.FolderDialog.resources
│   │   │   │   ├── FolderBrowser.pdb
│   │   │   │   └── FolderBrowser.projdata
│   │   │   └── FolderBrowser.csproj.FileList.txt
│   │   ├── UpgradeLog.XML
│   │   └── _UpgradeReport_Files
│   │   ├── UpgradeReport.css
│   │   ├── UpgradeReport_Minus.gif
│   │   ├── UpgradeReport_Plus.gif
│   │   └── UpgradeReport.xslt
│   └── Thumbs.db
├── 实例32
│   ├── 32.bmp
│   ├── progBarApp
│   │   ├── AssemblyInfo.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── progBarApp.exe
│   │   │   ├── progBarApp.pdb
│   │   │   └── progBarApp.vshost.exe
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── licenses.licx
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   ├── progBarApp.csproj.GenerateResource.Cache
│   │   │   │   ├── progBarApp.exe
│   │   │   │   ├── progBarApp.exe.incr
│   │   │   │   ├── progBarApp.exe.licenses
│   │   │   │   ├── progBarApp.Form1.resources
│   │   │   │   ├── progBarApp.pdb
│   │   │   │   └── progBarApp.projdata
│   │   │   └── progBarApp.csproj.FileList.txt
│   │   ├── progBarApp.csproj
│   │   ├── progBarApp.csproj.user
│   │   ├── progBarApp.sln
│   │   ├── progBarApp.suo
│   │   ├── UpgradeLog.XML
│   │   └── _UpgradeReport_Files
│   │   ├── UpgradeReport.css
│   │   ├── UpgradeReport_Minus.gif
│   │   ├── UpgradeReport_Plus.gif
│   │   └── UpgradeReport.xslt
│   └── Thumbs.db
├── 实例33
│   ├── 33.bmp
│   ├── controlTipApp
│   │   ├── AssemblyInfo.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── controlTipApp.exe
│   │   │   ├── controlTipApp.pdb
│   │   │   └── controlTipApp.vshost.exe
│   │   ├── controlTipApp.csproj
│   │   ├── controlTipApp.csproj.user
│   │   ├── controlTipApp.sln
│   │   ├── controlTipApp.suo
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── licenses.licx
│   │   ├── obj
│   │   │   ├── controlTipApp.csproj.FileList.txt
│   │   │   └── Debug
│   │   │   ├── controlTipApp.csproj.GenerateResource.Cache
│   │   │   ├── controlTipApp.exe
│   │   │   ├── controlTipApp.exe.incr
│   │   │   ├── controlTipApp.exe.licenses
│   │   │   ├── controlTipApp.Form1.resources
│   │   │   ├── controlTipApp.pdb
│   │   │   └── controlTipApp.projdata
│   │   ├── UpgradeLog.XML
│   │   └── _UpgradeReport_Files
│   │   ├── UpgradeReport.css
│   │   ├── UpgradeReport_Minus.gif
│   │   ├── UpgradeReport_Plus.gif
│   │   └── UpgradeReport.xslt
│   └── Thumbs.db
├── 实例34
│   ├── 34.bmp
│   ├── TrayApp
│   │   ├── AboutDlg.cs
│   │   ├── AboutDlg.resx
│   │   ├── AssemblyInfo.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── TrayApp.exe
│   │   │   ├── TrayApp.pdb
│   │   │   └── TrayApp.vshost.exe
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── Icon1.ico
│   │   ├── Icon2.ico
│   │   ├── IndiaFlag.ico
│   │   ├── licenses.licx
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   ├── TrayApp.AboutDlg.resources
│   │   │   │   ├── TrayApp.csproj.GenerateResource.Cache
│   │   │   │   ├── TrayApp.exe
│   │   │   │   ├── TrayApp.exe.incr
│   │   │   │   ├── TrayApp.exe.licenses
│   │   │   │   ├── TrayApp.pdb
│   │   │   │   ├── TrayApp.projdata
│   │   │   │   └── TrayApp.TrayForm.resources
│   │   │   └── TrayApp.csproj.FileList.txt
│   │   ├── TrayApp.csproj
│   │   ├── TrayApp.csproj.user
│   │   ├── TrayApp.sln
│   │   ├── TrayApp.suo
│   │   ├── UpgradeLog.XML
│   │   └── _UpgradeReport_Files
│   │   ├── UpgradeReport.css
│   │   ├── UpgradeReport_Minus.gif
│   │   ├── UpgradeReport_Plus.gif
│   │   └── UpgradeReport.xslt
│   └── TrayIconApp
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── TrayIconApp.exe
│   │   ├── TrayIconApp.pdb
│   │   └── TrayIconApp.vshost.exe
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── licenses.licx
│   ├── obj
│   │   ├── Debug
│   │   │   ├── TrayIconApp.csproj.GenerateResource.Cache
│   │   │   ├── TrayIconApp.exe
│   │   │   ├── TrayIconApp.exe.incr
│   │   │   ├── TrayIconApp.exe.licenses
│   │   │   ├── TrayIconApp.pdb
│   │   │   ├── TrayIconApp.projdata
│   │   │   └── TrayIconApp.TrayIcon.resources
│   │   └── TrayIconApp.csproj.FileList.txt
│   ├── TrayIconApp.csproj
│   ├── TrayIconApp.csproj.user
│   ├── TrayIconApp.sln
│   ├── TrayIconApp.suo
│   ├── UpgradeLog.XML
│   └── _UpgradeReport_Files
│   ├── UpgradeReport.css
│   ├── UpgradeReport_Minus.gif
│   ├── UpgradeReport_Plus.gif
│   └── UpgradeReport.xslt
├── 实例35
│   ├── 35.bmp
│   ├── noBorderApp
│   │   ├── AssemblyInfo.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── noBorderApp.exe
│   │   │   ├── noBorderApp.pdb
│   │   │   └── noBorderApp.vshost.exe
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── licenses.licx
│   │   ├── noBorderApp.csproj
│   │   ├── noBorderApp.csproj.user
│   │   ├── noBorderApp.sln
│   │   ├── noBorderApp.suo
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   ├── noBorderApp.csproj.GenerateResource.Cache
│   │   │   │   ├── noBorderApp.exe
│   │   │   │   ├── noBorderApp.exe.incr
│   │   │   │   ├── noBorderApp.exe.licenses
│   │   │   │   ├── noBorderApp.Form1.resources
│   │   │   │   ├── noBorderApp.pdb
│   │   │   │   └── noBorderApp.projdata
│   │   │   └── noBorderApp.csproj.FileList.txt
│   │   ├── UpgradeLog.XML
│   │   └── _UpgradeReport_Files
│   │   ├── UpgradeReport.css
│   │   ├── UpgradeReport_Minus.gif
│   │   ├── UpgradeReport_Plus.gif
│   │   └── UpgradeReport.xslt
│   └── Thumbs.db
├── 实例36
│   ├── 36.bmp
│   ├── MDIFormApp
│   │   ├── AssemblyInfo.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── MDIFormApp.exe
│   │   │   ├── MDIFormApp.pdb
│   │   │   └── MDIFormApp.vshost.exe
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── licenses.licx
│   │   ├── MDIFormApp.csproj
│   │   ├── MDIFormApp.csproj.user
│   │   ├── MDIFormApp.sln
│   │   ├── MDIFormApp.suo
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   ├── MDIFormApp.csproj.GenerateResource.Cache
│   │   │   │   ├── MDIFormApp.exe
│   │   │   │   ├── MDIFormApp.exe.incr
│   │   │   │   ├── MDIFormApp.exe.licenses
│   │   │   │   ├── MDIFormApp.Form1.resources
│   │   │   │   ├── MDIFormApp.pdb
│   │   │   │   └── MDIFormApp.projdata
│   │   │   └── MDIFormApp.csproj.FileList.txt
│   │   ├── UpgradeLog.XML
│   │   └── _UpgradeReport_Files
│   │   ├── UpgradeReport.css
│   │   ├── UpgradeReport_Minus.gif
│   │   ├── UpgradeReport_Plus.gif
│   │   └── UpgradeReport.xslt
│   └── Thumbs.db
├── 实例37
│   ├── 37.bmp
│   ├── floatingForm
│   │   ├── AssemblyInfo.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── floatingForm.exe
│   │   │   └── floatingForm.pdb
│   │   ├── floatingForm.csproj
│   │   ├── floatingForm.csproj.user
│   │   ├── floatingForm.sln
│   │   ├── floatingForm.suo
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── Form2.cs
│   │   ├── Form2.resx
│   │   ├── licenses.licx
│   │   └── obj
│   │   └── Debug
│   │   ├── floatingForm.exe
│   │   ├── floatingForm.exe.incr
│   │   ├── floatingForm.exe.licenses
│   │   ├── floatingForm.Form1.resources
│   │   ├── floatingForm.pdb
│   │   └── floatingForm.projdata
│   └── Thumbs.db
├── 实例38
│   ├── 38.bmp
│   ├── checklistBoxApp
│   │   ├── AssemblyInfo.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── checklistBoxApp.exe
│   │   │   └── checklistBoxApp.pdb
│   │   ├── checklistBoxApp.csproj
│   │   ├── checklistBoxApp.csproj.user
│   │   ├── checklistBoxApp.sln
│   │   ├── checklistBoxApp.suo
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── licenses.licx
│   │   └── obj
│   │   └── Debug
│   │   ├── checklistBoxApp.exe
│   │   ├── checklistBoxApp.exe.incr
│   │   ├── checklistBoxApp.exe.licenses
│   │   ├── checklistBoxApp.Form1.resources
│   │   ├── checklistBoxApp.pdb
│   │   └── checklistBoxApp.projdata
│   └── Thumbs.db
├── 实例39
│   ├── 39.bmp
│   ├── testApp
│   │   ├── AssemblyInfo.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── testApp.exe
│   │   │   └── testApp.pdb
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── licenses.licx
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── testApp.exe
│   │   │   ├── testApp.exe.incr
│   │   │   ├── testApp.exe.licenses
│   │   │   ├── testApp.Form1.resources
│   │   │   ├── testApp.pdb
│   │   │   └── testApp.projdata
│   │   ├── testApp.csproj
│   │   ├── testApp.csproj.user
│   │   ├── testApp.sln
│   │   └── testApp.suo
│   └── Thumbs.db
├── 实例40
│   ├── 40.bmp
│   ├── jjjj
│   │   ├── AssemblyInfo.cs
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── jjjj.csproj
│   │   ├── jjjj.csproj.user
│   │   └── obj
│   │   └── Debug
│   │   └── jjjj.projdata
│   ├── testApp
│   │   ├── AssemblyInfo.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── testApp.exe
│   │   │   └── testApp.pdb
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── licenses.licx
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── testApp.exe
│   │   │   ├── testApp.exe.incr
│   │   │   ├── testApp.exe.licenses
│   │   │   ├── testApp.Form1.resources
│   │   │   ├── testApp.pdb
│   │   │   └── testApp.projdata
│   │   ├── testApp.csproj
│   │   ├── testApp.csproj.user
│   │   ├── testApp.sln
│   │   └── testApp.suo
│   ├── Thumbs.db
│   ├── ttt
│   │   ├── AssemblyInfo.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── ttt.exe
│   │   │   └── ttt.pdb
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── licenses.licx
│   │   ├── ttt.csproj
│   │   ├── ttt.csproj.user
│   │   ├── ttt.sln
│   │   └── ttt.suo
│   └── useSplitterApp
│   ├── AssemblyInfo.cs
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── licenses.licx
│   ├── obj
│   │   ├── Debug
│   │   │   ├── useSplitterApp.csproj.GenerateResource.Cache
│   │   │   ├── useSplitterApp.exe
│   │   │   ├── useSplitterApp.exe.incr
│   │   │   ├── useSplitterApp.exe.licenses
│   │   │   ├── useSplitterApp.Form1.resources
│   │   │   ├── useSplitterApp.pdb
│   │   │   └── useSplitterApp.projdata
│   │   └── useSplitterApp.csproj.FileList.txt
│   ├── UpgradeLog.XML
│   ├── _UpgradeReport_Files
│   │   ├── UpgradeReport.css
│   │   ├── UpgradeReport_Minus.gif
│   │   ├── UpgradeReport_Plus.gif
│   │   └── UpgradeReport.xslt
│   ├── useSplitterApp.csproj
│   ├── useSplitterApp.csproj.user
│   ├── useSplitterApp.sln
│   └── useSplitterApp.suo
├── 实例41
│   ├── 41.bmp
│   ├── diy.cs
│   └── diy.exe
├── 实例42
│   ├── 42.bmp
│   ├── addCtrlAtRuntimeApp
│   │   ├── addCtrlAtRuntimeApp.csproj
│   │   ├── addCtrlAtRuntimeApp.csproj.user
│   │   ├── addCtrlAtRuntimeApp.sln
│   │   ├── addCtrlAtRuntimeApp.suo
│   │   ├── AssemblyInfo.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── addCtrlAtRuntimeApp.exe
│   │   │   └── addCtrlAtRuntimeApp.pdb
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── licenses.licx
│   │   └── obj
│   │   └── Debug
│   │   ├── addCtrlAtRuntimeApp.exe
│   │   ├── addCtrlAtRuntimeApp.exe.incr
│   │   ├── addCtrlAtRuntimeApp.exe.licenses
│   │   ├── addCtrlAtRuntimeApp.Form1.resources
│   │   ├── addCtrlAtRuntimeApp.pdb
│   │   └── addCtrlAtRuntimeApp.projdata
│   └── Thumbs.db
├── 实例43
│   ├── 43.bmp
│   ├── calc
│   │   ├── AssemblyInfo.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── calc.exe
│   │   │   └── calc.pdb
│   │   ├── calc.csproj
│   │   ├── calc.csproj.user
│   │   ├── calc.sln
│   │   ├── calc.suo
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── licenses.licx
│   │   └── obj
│   │   └── Debug
│   │   ├── calc.Calculator1.resources
│   │   ├── calc.exe
│   │   ├── calc.exe.incr
│   │   ├── calc.exe.licenses
│   │   ├── calc.pdb
│   │   └── calc.projdata
│   └── Thumbs.db
├── 实例44
│   ├── 44.bmp
│   ├── Thumbs.db
│   └── transparentWindow
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── transparentWindow.exe
│   │   └── transparentWindow.pdb
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── licenses.licx
│   ├── obj
│   │   └── Debug
│   │   ├── transparentWindow.exe
│   │   ├── transparentWindow.exe.incr
│   │   ├── transparentWindow.exe.licenses
│   │   ├── transparentWindow.Form1.resources
│   │   ├── transparentWindow.pdb
│   │   └── transparentWindow.projdata
│   ├── transparentWindow.csproj
│   ├── transparentWindow.csproj.user
│   ├── transparentWindow.sln
│   └── transparentWindow.suo
├── 实例45
│   ├── 45.bmp
│   ├── htmlMaker
│   │   ├── AssemblyInfo.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── htmlMaker.exe
│   │   │   ├── htmlMaker.pdb
│   │   │   ├── lihua.html
│   │   │   └── who a u.html
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── htmlMaker.csproj
│   │   ├── htmlMaker.csproj.user
│   │   ├── htmlMaker.sln
│   │   ├── htmlMaker.suo
│   │   ├── licenses.licx
│   │   └── obj
│   │   └── Debug
│   │   ├── htmlMaker.exe
│   │   ├── htmlMaker.exe.incr
│   │   ├── htmlMaker.exe.licenses
│   │   ├── htmlMaker.Form1.resources
│   │   ├── htmlMaker.pdb
│   │   └── htmlMaker.projdata
│   └── Thumbs.db
├── 实例46
│   ├── 46.bmp
│   ├── imageConvert
│   │   ├── AssemblyInfo.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── imageConvert.exe
│   │   │   ├── imageConvert.pdb
│   │   │   └── imageConvert.vshost.exe
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── imageConvert.csproj
│   │   ├── imageConvert.csproj.user
│   │   ├── imageConvert.sln
│   │   ├── imageConvert.suo
│   │   ├── licenses.licx
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   ├── imageConvert.exe
│   │   │   │   ├── imageConvert.exe.incr
│   │   │   │   ├── imageConvert.exe.licenses
│   │   │   │   ├── imageConvert.Form1.resources
│   │   │   │   ├── imageConvert.pdb
│   │   │   │   └── imageConvert.projdata
│   │   │   └── imageConvert.csproj.FileList.txt
│   │   ├── UpgradeLog.XML
│   │   └── _UpgradeReport_Files
│   │   ├── UpgradeReport.css
│   │   ├── UpgradeReport_Minus.gif
│   │   ├── UpgradeReport_Plus.gif
│   │   └── UpgradeReport.xslt
│   └── Thumbs.db
├── 实例47
│   ├── 47.bmp
│   ├── mygrep
│   │   ├── AssemblyInfo.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── mygrep.exe
│   │   │   └── mygrep.pdb
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── licenses.licx
│   │   ├── mygrep.csproj
│   │   ├── mygrep.csproj.user
│   │   ├── mygrep.sln
│   │   ├── mygrep.suo
│   │   └── obj
│   │   └── Debug
│   │   ├── mygrep.exe
│   │   ├── mygrep.exe.incr
│   │   ├── mygrep.exe.licenses
│   │   ├── mygrep.Form1.resources
│   │   ├── mygrep.pdb
│   │   └── mygrep.projdata
│   └── Thumbs.db
├── 实例48
│   ├── 48.bmp
│   ├── displayFont
│   │   ├── AssemblyInfo.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── displayFont.exe
│   │   │   └── displayFont.pdb
│   │   ├── displayFont.csproj
│   │   ├── displayFont.csproj.user
│   │   ├── displayFont.sln
│   │   ├── displayFont.suo
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── licenses.licx
│   │   └── obj
│   │   └── Debug
│   │   ├── displayFont.exe
│   │   ├── displayFont.exe.incr
│   │   ├── displayFont.exe.licenses
│   │   ├── displayFont.pdb
│   │   ├── displayFont.projdata
│   │   └── DisplayFonts.DisplayFonts.resources
│   └── Thumbs.db
├── 实例49
│   ├── 49.bmp
│   ├── RedAll.cs
│   ├── RedAll.exe
│   └── step.txt
├── 实例50
│   ├── 50.bmp
│   ├── pingtu
│   │   ├── AssemblyInfo.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── pingtu.exe
│   │   │   └── pingtu.pdb
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── licenses.licx
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── game.Form1.resources
│   │   │   ├── pingtu.exe
│   │   │   ├── pingtu.exe.incr
│   │   │   ├── pingtu.exe.licenses
│   │   │   ├── pingtu.pdb
│   │   │   └── pingtu.projdata
│   │   ├── pingtu.csproj
│   │   ├── pingtu.csproj.user
│   │   ├── pingtu.sln
│   │   └── pingtu.suo
│   └── Thumbs.db
├── 实例51
│   ├── 51.bmp
│   ├── server.cs
│   └── server.exe
├── 实例52
│   ├── 52.bmp
│   ├── client.cs
│   └── client.exe
├── 实例53
│   ├── 53.bmp
│   ├── DateServer.cs
│   └── DateServer.exe
├── 实例54
│   ├── 54.bmp
│   ├── DateClient.cs
│   └── DateClient.exe
├── 实例55
│   ├── 55.bmp
│   ├── EchoServer.cs
│   └── EchoServer.exe
├── 实例56
│   ├── 56.bmp
│   ├── back1.gif
│   ├── back2.gif
│   ├── EchoClient.cs
│   ├── EchoClient.exe
│   └── Thumbs.db
├── 实例57
│   ├── 57.bmp
│   ├── ChatServer.cs
│   └── ChatServer.exe
├── 实例58
│   ├── 58.bmp
│   ├── ChatClient.cs
│   └── ChatClient.exe
├── 实例59
│   ├── 59.bmp
│   ├── getIP.cs
│   └── getIP.exe
├── 实例60
│   ├── 60.bmp
│   ├── GetDefaultPage.cs
│   └── GetDefaultPage.exe
├── 实例61
│   ├── 61.bmp
│   ├── IrcBot.cs
│   └── IrcBot.exe
├── 实例62
│   ├── 62.bmp
│   ├── GetURLAsync.cs
│   └── GetURLAsync.exe
├── 实例63
│   ├── 63.bmp
│   ├── EMailSender
│   │   ├── AssemblyInfo.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── EMailSender.exe
│   │   │   └── EMailSender.pdb
│   │   ├── EMailSender.csproj
│   │   ├── EMailSender.csproj.user
│   │   ├── EMailSender.sln
│   │   ├── EMailSender.suo
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   └── obj
│   │   └── Debug
│   │   ├── EMailer.Form1.resources
│   │   ├── EMailSender.exe
│   │   ├── EMailSender.exe.incr
│   │   ├── EMailSender.pdb
│   │   └── EMailSender.projdata
│   └── Thumbs.db
├── 实例64
│   ├── 64.bmp
│   ├── email009.ico
│   ├── EmailNotofier
│   │   ├── App.ico
│   │   ├── AssemblyInfo.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── EmailNotofier.exe
│   │   │   └── EmailNotofier.pdb
│   │   ├── email009.ico
│   │   ├── EmailNotify.cs
│   │   ├── EmailNotify.resx
│   │   ├── EmailNotofier.csproj
│   │   ├── EmailNotofier.csproj.user
│   │   ├── EmailNotofier.sln
│   │   ├── EmailNotofier.suo
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── licenses.licx
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── EmailNotofier.EmailNotify.resources
│   │   │   ├── EmailNotofier.exe
│   │   │   ├── EmailNotofier.exe.incr
│   │   │   ├── EmailNotofier.exe.licenses
│   │   │   ├── EmailNotofier.Form1.resources
│   │   │   ├── EmailNotofier.pdb
│   │   │   └── EmailNotofier.projdata
│   │   └── Thumbs.db
│   └── Thumbs.db
├── 实例65
│   ├── 65.bmp
│   ├── doc1.html
│   ├── Thumbs.db
│   └── webbrowser
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── webbrowser.exe
│   │   └── webbrowser.pdb
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── licenses.licx
│   ├── obj
│   │   └── Debug
│   │   ├── webbrowser.exe
│   │   ├── webbrowser.exe.incr
│   │   ├── webbrowser.exe.licenses
│   │   ├── webbrowser.Form1.resources
│   │   ├── webbrowser.pdb
│   │   └── webbrowser.projdata
│   ├── webbrowser.csproj
│   ├── webbrowser.csproj.user
│   ├── webbrowser.sln
│   └── webbrowser.suo
├── 实例66
│   ├── 66.bmp
│   ├── Data
│   │   ├── Default.Dat
│   │   ├── Default.Dat.bak
│   │   ├── mime.dat
│   │   ├── vdirs.dat
│   │   └── vdirs.dat.bak
│   ├── MyWebServer2.exe
│   ├── MyWebServer.cs
│   └── MyWebServer.exe
├── 实例67
│   ├── 67.bmp
│   ├── whois.cs
│   └── whois.exe
├── 实例68
│   ├── 68.bmp
│   ├── ping.cs
│   └── ping.exe
├── 实例69
│   ├── 69.bmp
│   ├── ChatServer
│   │   ├── AssemblyInfo.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── ChatServer.exe
│   │   │   └── ChatServer.pdb
│   │   ├── ChatServer.csproj
│   │   ├── ChatServer.csproj.user
│   │   ├── ChatServerForm.cs
│   │   ├── ChatServerForm.resx
│   │   ├── ChatServer.sln
│   │   ├── ChatServer.suo
│   │   ├── Client.cs
│   │   ├── CommandProcessor.cs
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── licenses.licx
│   │   └── obj
│   │   └── Debug
│   │   ├── ChatServer.ChatServer.resources
│   │   ├── ChatServer.exe
│   │   ├── ChatServer.exe.incr
│   │   ├── ChatServer.exe.licenses
│   │   ├── ChatServer.pdb
│   │   └── ChatServer.projdata
│   └── Thumbs.db
├── 实例70
│   ├── 70.bmp
│   ├── ChatClient
│   │   ├── AssemblyInfo.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── ChatClient.exe
│   │   │   ├── ChatClient.pdb
│   │   │   └── logs
│   │   │   ├── 1501020010.txt
│   │   │   ├── 1501020012.txt
│   │   │   └── 1501020148.txt
│   │   ├── ChatClient2.cs
│   │   ├── ChatClient2.resx
│   │   ├── ChatClient.cs
│   │   ├── ChatClient.csproj
│   │   ├── ChatClient.csproj.user
│   │   ├── ChatClient.resx
│   │   ├── ChatClient.sln
│   │   ├── ChatClient.suo
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── licenses.licx
│   │   └── obj
│   │   └── Debug
│   │   ├── ChatClient.ChatClientForm.resources
│   │   ├── ChatClient.exe
│   │   ├── ChatClient.exe.incr
│   │   ├── ChatClient.exe.licenses
│   │   ├── ChatClient.pdb
│   │   └── ChatClient.projdata
│   └── Thumbs.db
├── 实例71
│   ├── 71.bmp
│   ├── mctest.mdb
│   ├── useADO.cs
│   └── useADO.exe
├── 实例72
│   ├── 72.bmp
│   ├── mctest.mdb
│   ├── useADO.exe
│   ├── writeData.cs
│   └── writeData.exe
├── 实例73
│   ├── 73.bmp
│   └── readData
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── mctest.mdb
│   │   ├── readData.exe
│   │   └── readData.pdb
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── licenses.licx
│   ├── obj
│   │   └── Debug
│   │   ├── readData.exe
│   │   ├── readData.exe.incr
│   │   ├── readData.exe.licenses
│   │   ├── readData.Form1.resources
│   │   ├── readData.pdb
│   │   └── readData.projdata
│   ├── readData.csproj
│   ├── readData.csproj.user
│   ├── readData.sln
│   └── readData.suo
├── 实例74
│   ├── 74.bmp
│   └── tableInfo
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── mctest.mdb
│   │   ├── tableInfo.exe
│   │   └── tableInfo.pdb
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── licenses.licx
│   ├── obj
│   │   └── Debug
│   │   ├── tableInfo.exe
│   │   ├── tableInfo.exe.incr
│   │   ├── tableInfo.exe.licenses
│   │   ├── tableInfo.Form1.resources
│   │   ├── tableInfo.pdb
│   │   └── tableInfo.projdata
│   ├── tableInfo.csproj
│   ├── tableInfo.csproj.user
│   ├── tableInfo.sln
│   └── tableInfo.suo
├── 实例75
│   ├── 75.bmp
│   └── useDataGrid
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── mctest.mdb
│   │   ├── useDataGrid.exe
│   │   └── useDataGrid.pdb
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── licenses.licx
│   ├── obj
│   │   └── Debug
│   │   ├── useDataGrid.exe
│   │   ├── useDataGrid.exe.incr
│   │   ├── useDataGrid.exe.licenses
│   │   ├── useDataGrid.Form1.resources
│   │   ├── useDataGrid.pdb
│   │   └── useDataGrid.projdata
│   ├── useDataGrid.csproj
│   ├── useDataGrid.csproj.user
│   ├── useDataGrid.sln
│   └── useDataGrid.suo
├── 实例76
│   ├── 76.bmp
│   └── DataTableCompute
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── DataTableCompute.exe
│   │   ├── DataTableCompute.pdb
│   │   └── interest.txt
│   ├── Compute.cs
│   ├── DataTableCompute.csproj
│   ├── DataTableCompute.csproj.user
│   ├── DataTableCompute.sln
│   ├── DataTableCompute.suo
│   ├── DBUpLoad.cs
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── interest1.txt
│   ├── interest.txt
│   ├── licenses.licx
│   └── obj
│   └── Debug
│   ├── DataTableCompute.exe
│   ├── DataTableCompute.exe.incr
│   ├── DataTableCompute.exe.licenses
│   ├── DataTableCompute.Form1.resources
│   ├── DataTableCompute.pdb
│   └── DataTableCompute.projdata
├── 实例77
│   ├── App.ico
│   ├── AssemblyInfo.cs
│   ├── BIN
│   │   └── Debug
│   │   ├── 实例77.exe
│   │   └── 实例77.pdb
│   ├── Class1.cs
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── OBJ
│   │   └── Debug
│   │   ├── 实例77.exe
│   │   ├── 实例77.exe.incr
│   │   ├── 实例77.Form1.resources
│   │   ├── 实例77.pdb
│   │   └── 实例77.projdata
│   ├── 实例77.csproj
│   ├── 实例77.csproj.user
│   ├── 实例77.sln
│   └── 实例77.suo
├── 实例78
│   ├── 78.bmp
│   └── ThreadExample2
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── ThreadExample2.exe
│   │   └── ThreadExample2.pdb
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── licenses.licx
│   ├── obj
│   │   └── Debug
│   │   ├── startThread.Form1.resources
│   │   ├── ThreadExample2.exe
│   │   ├── ThreadExample2.exe.incr
│   │   ├── ThreadExample2.exe.licenses
│   │   ├── ThreadExample2.Form1.resources
│   │   ├── ThreadExample2.pdb
│   │   └── ThreadExample2.projdata
│   ├── ThreadExample2.csproj
│   ├── ThreadExample2.csproj.user
│   ├── ThreadExample2.sln
│   └── ThreadExample2.suo
├── 实例79
│   ├── 79.bmp
│   └── ThreadExample3
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── ThreadExample3.exe
│   │   └── ThreadExample3.pdb
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── licenses.licx
│   ├── obj
│   │   └── Debug
│   │   ├── ThreadExample3.exe
│   │   ├── ThreadExample3.exe.incr
│   │   ├── ThreadExample3.exe.licenses
│   │   ├── ThreadExample3.Form1.resources
│   │   ├── ThreadExample3.pdb
│   │   └── ThreadExample3.projdata
│   ├── ThreadExample3.csproj
│   ├── ThreadExample3.csproj.user
│   ├── ThreadExample3.sln
│   └── ThreadExample3.suo
├── 实例80
│   ├── 80.bmp
│   └── ThreadExample4
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── ThreadExample4.exe
│   │   └── ThreadExample4.pdb
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── licenses.licx
│   ├── obj
│   │   └── Debug
│   │   ├── ThreadExample4.exe
│   │   ├── ThreadExample4.exe.incr
│   │   ├── ThreadExample4.exe.licenses
│   │   ├── ThreadExample4.Form1.resources
│   │   ├── ThreadExample4.pdb
│   │   └── ThreadExample4.projdata
│   ├── ThreadExample4.csproj
│   ├── ThreadExample4.csproj.user
│   ├── ThreadExample4.sln
│   └── ThreadExample4.suo
├── 实例81
│   ├── 81.bmp
│   └── ThreadExample5
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── ThreadExample4.exe
│   │   └── ThreadExample4.pdb
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── licenses.licx
│   ├── obj
│   │   └── Debug
│   │   ├── ThreadExample4.exe
│   │   ├── ThreadExample4.exe.incr
│   │   ├── ThreadExample4.exe.licenses
│   │   ├── ThreadExample4.Form1.resources
│   │   ├── ThreadExample4.pdb
│   │   └── ThreadExample4.projdata
│   ├── ThreadExample4.csproj
│   ├── ThreadExample4.csproj.user
│   ├── ThreadExample4.sln
│   └── ThreadExample4.suo
├── 实例82
│   ├── 82.bmp
│   ├── Thumbs.db
│   └── WorkerThread_demo
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── WorkerThread.exe
│   │   └── WorkerThread.pdb
│   ├── licenses.licx
│   ├── LongProcess.cs
│   ├── MainForm.cs
│   ├── MainForm.resx
│   ├── obj
│   │   └── Debug
│   │   ├── WorkerThread.exe
│   │   ├── WorkerThread.exe.incr
│   │   ├── WorkerThread.exe.licenses
│   │   ├── WorkerThread.MainForm.resources
│   │   ├── WorkerThread.pdb
│   │   └── WorkerThread.projdata
│   ├── WorkerThread.csproj
│   ├── WorkerThread.csproj.user
│   ├── WorkerThread.sln
│   └── WorkerThread.suo
├── 实例83
│   ├── 83.bmp
│   ├── allProcess.cs
│   └── allProcess.exe
├── 实例84
│   ├── 84.bmp
│   ├── readRegData.cs
│   ├── readRegData.exe
│   └── readRegData.reg
├── 实例85
│   ├── 85.bmp
│   └── useClipboard
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── useClipboard.exe
│   │   └── useClipboard.pdb
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── licenses.licx
│   ├── obj
│   │   └── Debug
│   │   ├── useClipboard.exe
│   │   ├── useClipboard.exe.incr
│   │   ├── useClipboard.exe.licenses
│   │   ├── useClipboard.Form1.resources
│   │   ├── useClipboard.pdb
│   │   └── useClipboard.projdata
│   ├── useClipboard.csproj
│   ├── useClipboard.csproj.user
│   ├── useClipboard.sln
│   └── useClipboard.suo
├── 实例86
│   ├── 86.bmp
│   └── useGDI+
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── useGDI+.exe
│   │   └── useGDI+.pdb
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── licenses.licx
│   ├── obj
│   │   └── Debug
│   │   ├── useGDI+.exe
│   │   ├── useGDI+.exe.incr
│   │   ├── useGDI_.Form1.resources
│   │   ├── useGDI+.pdb
│   │   └── useGDI+.projdata
│   ├── useGDI+.csproj
│   ├── useGDI+.csproj.user
│   ├── useGDI+.sln
│   └── useGDI+.suo
├── 实例87
│   ├── 87.bmp
│   └── useBrush
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── BlueLace16.bmp
│   │   ├── useBrush.exe
│   │   └── useBrush.pdb
│   ├── BlueLace16.bmp
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── licenses.licx
│   ├── obj
│   │   └── Debug
│   │   ├── useBrush.exe
│   │   ├── useBrush.exe.incr
│   │   ├── useBrush.exe.licenses
│   │   ├── useBrush.Form1.resources
│   │   ├── useBrush.pdb
│   │   └── useBrush.projdata
│   ├── useBrush.csproj
│   ├── useBrush.csproj.user
│   ├── useBrush.sln
│   └── useBrush.suo
├── 实例88
│   ├── 88.bmp
│   └── AnimatBall
│   ├── AnimatBall.csproj
│   ├── AnimatBall.csproj.user
│   ├── AnimatBall.sln
│   ├── AnimatBall.suo
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── AnimatBall.exe
│   │   └── AnimatBall.pdb
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── licenses.licx
│   └── obj
│   └── Debug
│   ├── AnimatBall.exe
│   ├── AnimatBall.exe.incr
│   ├── AnimatBall.exe.licenses
│   ├── AnimatBall.Form1.resources
│   ├── AnimatBall.pdb
│   └── AnimatBall.projdata
├── 实例89
│   ├── 89.bmp
│   └── Transform
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── Transform.exe
│   │   └── Transform.pdb
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── licenses.licx
│   ├── obj
│   │   └── Debug
│   │   ├── Transform.exe
│   │   ├── Transform.exe.incr
│   │   ├── Transform.exe.licenses
│   │   ├── Transform.Form1.resources
│   │   ├── Transform.pdb
│   │   └── Transform.projdata
│   ├── Transform.csproj
│   ├── Transform.csproj.user
│   ├── Transform.sln
│   └── Transform.suo
├── 实例90
│   ├── 90.bmp
│   └── Ratation
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── Ratation.exe
│   │   ├── Ratation.pdb
│   │   └── Ratation.vshost.exe
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── licenses.licx
│   ├── obj
│   │   ├── Debug
│   │   │   ├── Ratation.csproj.GenerateResource.Cache
│   │   │   ├── Ratation.exe
│   │   │   ├── Ratation.exe.incr
│   │   │   ├── Ratation.exe.licenses
│   │   │   ├── Ratation.Form1.resources
│   │   │   ├── Ratation.pdb
│   │   │   └── Ratation.projdata
│   │   └── Ratation.csproj.FileList.txt
│   ├── Ratation.csproj
│   ├── Ratation.csproj.user
│   ├── Ratation.sln
│   ├── Ratation.suo
│   ├── UpgradeLog.XML
│   └── _UpgradeReport_Files
│   ├── UpgradeReport.css
│   ├── UpgradeReport_Minus.gif
│   ├── UpgradeReport_Plus.gif
│   └── UpgradeReport.xslt
├── 实例91
│   ├── 91.bmp
│   └── AnimatePicture
│   ├── AnimatePicture.csproj
│   ├── AnimatePicture.csproj.user
│   ├── AnimatePicture.sln
│   ├── AnimatePicture.suo
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── AnimatePicture.exe
│   │   ├── AnimatePicture.pdb
│   │   ├── AnimatePicture.vshost.exe
│   │   ├── Blue Lace 16.bmp
│   │   ├── Coffee Bean.bmp
│   │   ├── FeatherTexture.bmp
│   │   ├── Gone Fishing.bmp
│   │   ├── Greenstone.bmp
│   │   ├── Prairie Wind.bmp
│   │   ├── Rhododendron.bmp
│   │   ├── River Sumida.bmp
│   │   ├── Santa Fe Stucco.bmp
│   │   └── Soap Bubbles.bmp
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── licenses.licx
│   ├── obj
│   │   ├── AnimatePicture.csproj.FileList.txt
│   │   └── Debug
│   │   ├── AnimatePicture.csproj.GenerateResource.Cache
│   │   ├── AnimatePicture.exe
│   │   ├── AnimatePicture.exe.incr
│   │   ├── AnimatePicture.exe.licenses
│   │   ├── AnimatePicture.Form1.resources
│   │   ├── AnimatePicture.pdb
│   │   └── AnimatePicture.projdata
│   ├── UpgradeLog.XML
│   └── _UpgradeReport_Files
│   ├── UpgradeReport.css
│   ├── UpgradeReport_Minus.gif
│   ├── UpgradeReport_Plus.gif
│   └── UpgradeReport.xslt
├── 实例92
│   ├── 92.bmp
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── buttonNormal.jpg
│   │   ├── buttonOver2.jpg
│   │   ├── CDAudio.jpg
│   │   ├── CDOver.jpg
│   │   ├── Circle.jpg
│   │   ├── CircleOver.jpg
│   │   ├── hotc1.jpg
│   │   ├── hotc2.jpg
│   │   ├── hotc3.jpg
│   │   ├── hotc4.jpg
│   │   ├── hotc5.jpg
│   │   ├── hotc6.jpg
│   │   ├── hotc7.jpg
│   │   ├── hotc8.jpg
│   │   ├── mediaPlayer.jpg
│   │   ├── Playing.jpg
│   │   ├── PlayingOver.jpg
│   │   ├── PlayingUp.jpg
│   │   ├── StopBut.jpg
│   │   ├── StopButNormal.jpg
│   │   ├── StopButOver.jpg
│   │   ├── WinApp.exe
│   │   ├── WinApp.pdb
│   │   └── WinApp.vshost.exe
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── licenses.licx
│   ├── MyMessageFilter.cs
│   ├── obj
│   │   ├── Debug
│   │   │   ├── WinApp.csproj.GenerateResource.Cache
│   │   │   ├── WinApp.csproj.ResolveComReference.cache
│   │   │   ├── WinApp.exe
│   │   │   ├── WinApp.exe.incr
│   │   │   ├── WinApp.exe.licenses
│   │   │   ├── WinApp.Form1.resources
│   │   │   ├── WinApp.pdb
│   │   │   └── WinApp.projdata
│   │   └── WinApp.csproj.FileList.txt
│   ├── ShapedForm
│   │   ├── AssemblyInfo.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── ShapedForm.exe
│   │   │   └── ShapedForm.pdb
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── licenses.licx
│   │   ├── obj
│   │   │   └── Debug
│   │   │   ├── ShapedForm.exe
│   │   │   ├── ShapedForm.exe.incr
│   │   │   ├── ShapedForm.exe.licenses
│   │   │   ├── ShapedForm.Form1.resources
│   │   │   ├── ShapedForm.pdb
│   │   │   └── ShapedForm.projdata
│   │   ├── ShapedForm.csproj
│   │   ├── ShapedForm.csproj.user
│   │   ├── ShapedForm.sln
│   │   └── ShapedForm.suo
│   ├── UpgradeLog.XML
│   ├── _UpgradeReport_Files
│   │   ├── UpgradeReport.css
│   │   ├── UpgradeReport_Minus.gif
│   │   ├── UpgradeReport_Plus.gif
│   │   └── UpgradeReport.xslt
│   ├── WinApp.csproj
│   ├── WinApp.csproj.user
│   ├── WinApp.sln
│   └── WinApp.suo
├── 实例93
│   ├── 93.bmp
│   ├── Thumbs.db
│   └── WinApp
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── buttonNormal.jpg
│   │   ├── buttonOver2.jpg
│   │   ├── CDAudio.jpg
│   │   ├── CDOver.jpg
│   │   ├── Circle.jpg
│   │   ├── CircleOver.jpg
│   │   ├── hotc1.jpg
│   │   ├── hotc2.jpg
│   │   ├── hotc3.jpg
│   │   ├── hotc4.jpg
│   │   ├── hotc5.jpg
│   │   ├── hotc6.jpg
│   │   ├── hotc7.jpg
│   │   ├── hotc8.jpg
│   │   ├── mediaPlayer.jpg
│   │   ├── Playing.jpg
│   │   ├── PlayingOver.jpg
│   │   ├── PlayingUp.jpg
│   │   ├── StopBut.jpg
│   │   ├── StopButNormal.jpg
│   │   ├── StopButOver.jpg
│   │   ├── Thumbs.db
│   │   ├── WinApp.exe
│   │   ├── WinApp.pdb
│   │   └── WinApp.vshost.exe
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── licenses.licx
│   ├── MyMessageFilter.cs
│   ├── obj
│   │   ├── Debug
│   │   │   ├── TempPE
│   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   ├── WinApp.csproj.GenerateResource.Cache
│   │   │   ├── WinApp.csproj.ResolveComReference.cache
│   │   │   ├── WinApp.exe
│   │   │   ├── WinApp.exe.incr
│   │   │   ├── WinApp.exe.licenses
│   │   │   ├── WinApp.Form1.resources
│   │   │   ├── WinApp.pdb
│   │   │   └── WinApp.projdata
│   │   └── WinApp.csproj.FileList.txt
│   ├── Properties
│   │   ├── Resources.Designer.cs
│   │   └── Resources.resx
│   ├── UpgradeLog.XML
│   ├── _UpgradeReport_Files
│   │   ├── UpgradeReport.css
│   │   ├── UpgradeReport_Minus.gif
│   │   ├── UpgradeReport_Plus.gif
│   │   └── UpgradeReport.xslt
│   ├── WinApp.csproj
│   ├── WinApp.csproj.user
│   ├── WinApp.sln
│   └── WinApp.suo
├── 实例94
│   ├── 94.bmp
│   ├── puker
│   │   ├── AssemblyInfo.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── puker.exe
│   │   │   ├── puker.pdb
│   │   │   └── puker.vshost.exe
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── licenses.licx
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   ├── puker.csproj.GenerateResource.Cache
│   │   │   │   ├── puker.exe
│   │   │   │   ├── puker.exe.incr
│   │   │   │   ├── puker.exe.licenses
│   │   │   │   ├── puker.Form1.resources
│   │   │   │   ├── puker.pdb
│   │   │   │   └── puker.projdata
│   │   │   └── puker.csproj.FileList.txt
│   │   ├── puker.csproj
│   │   ├── puker.csproj.user
│   │   ├── puker.sln
│   │   ├── puker.suo
│   │   ├── UpgradeLog.XML
│   │   └── _UpgradeReport_Files
│   │   ├── UpgradeReport.css
│   │   ├── UpgradeReport_Minus.gif
│   │   ├── UpgradeReport_Plus.gif
│   │   └── UpgradeReport.xslt
│   └── Thumbs.db
├── 实例95
│   ├── 95.bmp
│   └── puker
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── puker.exe
│   │   ├── puker.pdb
│   │   └── puker.vshost.exe
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── licenses.licx
│   ├── obj
│   │   ├── Debug
│   │   │   ├── puker.csproj.GenerateResource.Cache
│   │   │   ├── puker.exe
│   │   │   ├── puker.exe.incr
│   │   │   ├── puker.exe.licenses
│   │   │   ├── puker.Form1.resources
│   │   │   ├── puker.pdb
│   │   │   └── puker.projdata
│   │   └── puker.csproj.FileList.txt
│   ├── puker.csproj
│   ├── puker.csproj.user
│   ├── puker.sln
│   ├── puker.suo
│   ├── UpgradeLog.XML
│   └── _UpgradeReport_Files
│   ├── UpgradeReport.css
│   ├── UpgradeReport_Minus.gif
│   ├── UpgradeReport_Plus.gif
│   └── UpgradeReport.xslt
├── 实例96
│   ├── 96.bmp
│   ├── tic_model.cs
│   ├── tic_viewcontroller.cs
│   └── tic_viewcontroller.exe
├── 实例97
│   ├── 97.bmp
│   ├── AssemblyInfo.cs
│   ├── bin
│   │   └── Debug
│   │   ├── eater2.gif
│   │   ├── eater.gif
│   │   ├── hit.wav
│   │   ├── stone.gif
│   │   ├── WindowsApplication22.exe
│   │   ├── WindowsApplication22.pdb
│   │   └── WindowsApplication22.vshost.exe
│   ├── Eater.cs
│   ├── EaterGame.gif
│   ├── EaterKeyPress.gif
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── Initial Class Diagram.gif
│   ├── licenses.licx
│   ├── obj
│   │   ├── Debug
│   │   │   ├── WindowsApplication22.csproj.GenerateResource.Cache
│   │   │   ├── WindowsApplication22.exe
│   │   │   ├── WindowsApplication22.exe.incr
│   │   │   ├── WindowsApplication22.exe.licenses
│   │   │   ├── WindowsApplication22.Form1.resources
│   │   │   ├── WindowsApplication22.pdb
│   │   │   └── WindowsApplication22.projdata
│   │   └── WindowsApplication22.csproj.FileList.txt
│   ├── RevErr.txt
│   ├── Score.cs
│   ├── Stone.cs
│   ├── stone.gif
│   ├── TimerDisplay.cs
│   ├── UMLPackman.omt
│   ├── WindowsApplication22.csproj
│   ├── WindowsApplication22.csproj.old
│   ├── WindowsApplication22.csproj.user
│   ├── WindowsApplication22.csproj.user.old
│   ├── WindowsApplication22.sln
│   └── WindowsApplication22.suo
├── 实例98
│   ├── 98.bmp
│   ├── MasterMind
│   │   ├── AssemblyInfo.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── MasterMind.exe
│   │   │   ├── MasterMind.pdb
│   │   │   └── MasterMind.vshost.exe
│   │   ├── Board.cs
│   │   ├── ColorPanel.cs
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── licenses.licx
│   │   ├── MasterMind.csproj
│   │   ├── MasterMind.csproj.old
│   │   ├── MasterMind.csproj.user
│   │   ├── MasterMind.csproj.user.old
│   │   ├── Mastermind.omt
│   │   ├── MasterMind.sln
│   │   ├── MasterMind.suo
│   │   ├── MasterMind.vsd
│   │   ├── Mastermind.WC
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   ├── MasterMind.csproj.GenerateResource.Cache
│   │   │   │   ├── MasterMind.exe
│   │   │   │   ├── MasterMind.exe.incr
│   │   │   │   ├── MasterMind.exe.licenses
│   │   │   │   ├── MasterMind.Form1.resources
│   │   │   │   ├── MasterMind.pdb
│   │   │   │   └── MasterMind.projdata
│   │   │   └── MasterMind.csproj.FileList.txt
│   │   ├── RevErr.txt
│   │   └── ScoreBoard.cs
│   └── Thumbs.db
├── 实例99
│   ├── 99.bmp
│   ├── GraphicsCopyright
│   │   ├── AssemblyInfo.cs
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── GraphicsCopyright.exe
│   │   │   │   ├── GraphicsCopyright.exe.licenses
│   │   │   │   ├── GraphicsCopyright.Form1.resources
│   │   │   │   ├── GraphicsCopyright.pdb
│   │   │   │   ├── GraphicsCopyright.vshost.exe
│   │   │   │   ├── output.il
│   │   │   │   └── output.res
│   │   │   └── Release
│   │   │   └── GraphicsCopyright.exe
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── GraphicsCopyright.csproj
│   │   ├── GraphicsCopyright.csproj.old
│   │   ├── GraphicsCopyright.csproj.user
│   │   ├── GraphicsCopyright.csproj.user.old
│   │   ├── GraphicsCopyright.sln
│   │   ├── GraphicsCopyright.suo
│   │   ├── licenses.licx
│   │   └── obj
│   │   ├── Debug
│   │   │   ├── GraphicsCopyright.csproj.GenerateResource.Cache
│   │   │   ├── GraphicsCopyright.exe
│   │   │   ├── GraphicsCopyright.exe.incr
│   │   │   ├── GraphicsCopyright.Form1.resources
│   │   │   ├── GraphicsCopyright.pdb
│   │   │   └── GraphicsCopyright.projdata
│   │   ├── GraphicsCopyright.csproj.FileList.txt
│   │   └── Release
│   │   ├── GraphicsCopyright.exe
│   │   ├── GraphicsCopyright.exe.incr
│   │   ├── GraphicsCopyright.exe.licenses
│   │   ├── GraphicsCopyright.Form1.resources
│   │   └── GraphicsCopyright.projdata
│   └── Thumbs.db
└── 更多E书下载.html

448 directories, 1645 files

标签:

实例下载地址

C#-100个小例子

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警