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

C#开发之道

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:11.95M
  • 下载次数:11
  • 浏览次数:82
  • 发布时间:2023-07-06
  • 实例类别:C#语言基础
  • 发 布 人:js2021
  • 文件格式:.rar
  • 所需积分:2
 相关标签: 开发 C#

实例介绍

【实例简介】C#开发之道
C#开发之道,随书光盘。 (1)使用本书中源程序时,请将源程序文件夹下的所有文件拷贝到计算机硬盘上,并去掉所有文件的只读属性。 (2)在系统上安装Visual Studio 2008集成开发环境、SQL Server 2000。 (3)...

【实例截图】

from clipboard

【核心代码】
文件清单
└── C#开发之道
    ├── C#学习资料
    │   ├── 大型项目源码
    │   │   ├── 图片管理工具
    │   │   │   └── PictureManage
    │   │   │       ├── PictureManage
    │   │   │       │   ├── bin
    │   │   │       │   │   └── Debug
    │   │   │       │   │       ├── PictureManage.exe
    │   │   │       │   │       ├── PictureManage.pdb
    │   │   │       │   │       ├── PictureManage.vshost.exe
    │   │   │       │   │       └── PictureManage.vshost.exe.manifest
    │   │   │       │   ├── frmMain.cs
    │   │   │       │   ├── frmMain.Designer.cs
    │   │   │       │   ├── frmMain.resx
    │   │   │       │   ├── frmPicAdjust.cs
    │   │   │       │   ├── frmPicAdjust.Designer.cs
    │   │   │       │   ├── frmPicAdjust.resx
    │   │   │       │   ├── frmPictureMax.cs
    │   │   │       │   ├── frmPictureMax.Designer.cs
    │   │   │       │   ├── frmPictureMax.resx
    │   │   │       │   ├── frmRename.cs
    │   │   │       │   ├── frmRename.Designer.cs
    │   │   │       │   ├── frmRename.resx
    │   │   │       │   ├── frmSlide.cs
    │   │   │       │   ├── frmSlide.Designer.cs
    │   │   │       │   ├── frmSlide.resx
    │   │   │       │   ├── frmSpecialEfficacy.cs
    │   │   │       │   ├── frmSpecialEfficacy.Designer.cs
    │   │   │       │   ├── frmSpecialEfficacy.resx
    │   │   │       │   ├── frmWater.cs
    │   │   │       │   ├── frmWater.Designer.cs
    │   │   │       │   ├── frmWater.resx
    │   │   │       │   ├── ImageFolder
    │   │   │       │   │   ├── 上.ico
    │   │   │       │   │   ├── 下.ico
    │   │   │       │   │   ├── 保存1.ico
    │   │   │       │   │   ├── 保存2.png
    │   │   │       │   │   ├── 保存3.png
    │   │   │       │   │   ├── 保存.png
    │   │   │       │   │   ├── 保存退出.ico
    │   │   │       │   │   ├── 删除.ico
    │   │   │       │   │   ├── 刷新.ico
    │   │   │       │   │   ├── 取消.png
    │   │   │       │   │   ├── 图标 (58).ico
    │   │   │       │   │   ├── 打印.ico
    │   │   │       │   │   ├── 打开.ico
    │   │   │       │   │   ├── 播放.ico
    │   │   │       │   │   ├── 旋转.ico
    │   │   │       │   │   ├── 暂停.ico
    │   │   │       │   │   ├── 预览1.png
    │   │   │       │   │   └── 预览.png
    │   │   │       │   ├── obj
    │   │   │       │   │   ├── Debug
    │   │   │       │   │   │   ├── PictureManage.csproj.FileListAbsolute.txt
    │   │   │       │   │   │   ├── PictureManage.csproj.GenerateResource.Cache
    │   │   │       │   │   │   ├── PictureManage.exe
    │   │   │       │   │   │   ├── PictureManage.frmMain.resources
    │   │   │       │   │   │   ├── PictureManage.frmPicAdjust.resources
    │   │   │       │   │   │   ├── PictureManage.frmPictureMax.resources
    │   │   │       │   │   │   ├── PictureManage.frmRename.resources
    │   │   │       │   │   │   ├── PictureManage.frmSlide.resources
    │   │   │       │   │   │   ├── PictureManage.frmSpecialEfficacy.resources
    │   │   │       │   │   │   ├── PictureManage.frmWater.resources
    │   │   │       │   │   │   ├── PictureManage.pdb
    │   │   │       │   │   │   └── PictureManage.Properties.Resources.resources
    │   │   │       │   │   ├── PictureManage.csproj.FileListAbsolute.txt
    │   │   │       │   │   └── PictureManage.csproj.FileList.txt
    │   │   │       │   ├── PictureManage.csproj
    │   │   │       │   ├── PictureManage.csproj.user
    │   │   │       │   ├── Program.cs
    │   │   │       │   ├── Properties
    │   │   │       │   │   ├── AssemblyInfo.cs
    │   │   │       │   │   ├── Resources.Designer.cs
    │   │   │       │   │   ├── Resources.resx
    │   │   │       │   │   ├── Settings.Designer.cs
    │   │   │       │   │   └── Settings.settings
    │   │   │       │   └── TemporaryFolder
    │   │   │       ├── PictureManage.sln
    │   │   │       └── PictureManage.suo
    │   │   ├── 文件批量处理器
    │   │   │   └── FileManage
    │   │   │       ├── FileManage
    │   │   │       │   ├── AboutBox.cs
    │   │   │       │   ├── AboutBox.Designer.cs
    │   │   │       │   ├── AboutBox.resx
    │   │   │       │   ├── bin
    │   │   │       │   │   └── Debug
    │   │   │       │   │       ├── clear.bat
    │   │   │       │   │       ├── FileManage.exe
    │   │   │       │   │       ├── FileManage.pdb
    │   │   │       │   │       ├── FileManage.vshost.exe
    │   │   │       │   │       ├── FileManage.vshost.exe.manifest
    │   │   │       │   │       ├── ICSharpCode.SharpZipLib.dll
    │   │   │       │   │       ├── Interop.Office.dll
    │   │   │       │   │       └── Interop.Word.dll
    │   │   │       │   ├── CommonClass
    │   │   │       │   │   └── BaseClass.cs
    │   │   │       │   ├── FileManage.csproj
    │   │   │       │   ├── frmMain.cs
    │   │   │       │   ├── frmMain.Designer.cs
    │   │   │       │   ├── frmMain.resx
    │   │   │       │   ├── frmRepeat.cs
    │   │   │       │   ├── frmRepeat.Designer.cs
    │   │   │       │   ├── frmRepeat.resx
    │   │   │       │   ├── frmSplit.cs
    │   │   │       │   ├── frmSplit.Designer.cs
    │   │   │       │   ├── frmSplit.resx
    │   │   │       │   ├── Image
    │   │   │       │   │   ├── 1.ico
    │   │   │       │   │   ├── 2.ico
    │   │   │       │   │   ├── 3.ico
    │   │   │       │   │   ├── 4.ico
    │   │   │       │   │   └── 5.ico
    │   │   │       │   ├── obj
    │   │   │       │   │   ├── Debug
    │   │   │       │   │   │   ├── FileManage.AboutBox.resources
    │   │   │       │   │   │   ├── FileManage.csproj.FileListAbsolute.txt
    │   │   │       │   │   │   ├── FileManage.csproj.GenerateResource.Cache
    │   │   │       │   │   │   ├── FileManage.csproj.ResolveComReference.cache
    │   │   │       │   │   │   ├── FileManage.exe
    │   │   │       │   │   │   ├── FileManage.frmMain.resources
    │   │   │       │   │   │   ├── FileManage.frmRepeat.resources
    │   │   │       │   │   │   ├── FileManage.frmSplit.resources
    │   │   │       │   │   │   ├── FileManage.pdb
    │   │   │       │   │   │   ├── FileManage.Properties.Resources.resources
    │   │   │       │   │   │   ├── Interop.Office.dll
    │   │   │       │   │   │   ├── Interop.Word.dll
    │   │   │       │   │   │   └── ResolveAssemblyReference.cache
    │   │   │       │   │   └── FileManage.csproj.FileListAbsolute.txt
    │   │   │       │   ├── Program.cs
    │   │   │       │   └── Properties
    │   │   │       │       ├── AssemblyInfo.cs
    │   │   │       │       ├── Resources.Designer.cs
    │   │   │       │       ├── Resources.resx
    │   │   │       │       ├── Settings.Designer.cs
    │   │   │       │       └── Settings.settings
    │   │   │       ├── FileManage.sln
    │   │   │       └── FileManage.suo
    │   │   ├── 桌面精灵
    │   │   │   └── MyDesktop
    │   │   │       ├── MyDesktop
    │   │   │       │   ├── bin
    │   │   │       │   │   └── Debug
    │   │   │       │   │       ├── db_MyDesktop.mdb
    │   │   │       │   │       ├── MyDesktop.exe
    │   │   │       │   │       ├── MyDesktop.pdb
    │   │   │       │   │       ├── MyDesktop.vshost.exe
    │   │   │       │   │       └── MyDesktop.vshost.exe.manifest
    │   │   │       │   ├── CommonClass
    │   │   │       │   │   ├── DataOperate.cs
    │   │   │       │   │   ├── DateConvert.cs
    │   │   │       │   │   ├── HolidayManage.cs
    │   │   │       │   │   ├── RemindManage.cs
    │   │   │       │   │   └── WinSetManage.cs
    │   │   │       │   ├── frmHoliday.cs
    │   │   │       │   ├── frmHoliday.Designer.cs
    │   │   │       │   ├── frmHoliday.resx
    │   │   │       │   ├── frmMain.cs
    │   │   │       │   ├── frmMain.Designer.cs
    │   │   │       │   ├── frmMain.resx
    │   │   │       │   ├── frmOperateHoliday.cs
    │   │   │       │   ├── frmOperateHoliday.Designer.cs
    │   │   │       │   ├── frmOperateHoliday.resx
    │   │   │       │   ├── frmOperateRemind.cs
    │   │   │       │   ├── frmOperateRemind.Designer.cs
    │   │   │       │   ├── frmOperateRemind.resx
    │   │   │       │   ├── frmRemind.cs
    │   │   │       │   ├── frmRemind.Designer.cs
    │   │   │       │   ├── frmRemind.resx
    │   │   │       │   ├── frmWinSet.cs
    │   │   │       │   ├── frmWinSet.Designer.cs
    │   │   │       │   ├── frmWinSet.resx
    │   │   │       │   ├── Image
    │   │   │       │   │   └── 1.ico
    │   │   │       │   ├── MyDesktop.csproj
    │   │   │       │   ├── obj
    │   │   │       │   │   ├── Debug
    │   │   │       │   │   │   ├── MyDesktop.csproj.FileListAbsolute.txt
    │   │   │       │   │   │   ├── MyDesktop.csproj.GenerateResource.Cache
    │   │   │       │   │   │   ├── MyDesktop.exe
    │   │   │       │   │   │   ├── MyDesktop.frmHoliday.resources
    │   │   │       │   │   │   ├── MyDesktop.frmMain.resources
    │   │   │       │   │   │   ├── MyDesktop.frmOperateHoliday.resources
    │   │   │       │   │   │   ├── MyDesktop.frmOperateRemind.resources
    │   │   │       │   │   │   ├── MyDesktop.frmRemind.resources
    │   │   │       │   │   │   ├── MyDesktop.frmWinSet.resources
    │   │   │       │   │   │   ├── MyDesktop.pdb
    │   │   │       │   │   │   └── MyDesktop.Properties.Resources.resources
    │   │   │       │   │   └── MyDesktop.csproj.FileListAbsolute.txt
    │   │   │       │   ├── Program.cs
    │   │   │       │   └── Properties
    │   │   │       │       ├── AssemblyInfo.cs
    │   │   │       │       ├── Resources.Designer.cs
    │   │   │       │       ├── Resources.resx
    │   │   │       │       ├── Settings.Designer.cs
    │   │   │       │       └── Settings.settings
    │   │   │       ├── MyDesktop.sln
    │   │   │       └── MyDesktop.suo
    │   │   ├── 网页浏览器
    │   │   │   └── MyWebIE
    │   │   │       ├── MyWebIE
    │   │   │       │   ├── bin
    │   │   │       │   │   └── Debug
    │   │   │       │   │       ├── Interop.IWshRuntimeLibrary.dll
    │   │   │       │   │       ├── MyWebIE.exe
    │   │   │       │   │       ├── MyWebIE.pdb
    │   │   │       │   │       ├── MyWebIE.vshost.exe
    │   │   │       │   │       └── MyWebIE.vshost.exe.manifest
    │   │   │       │   ├── frmIE.cs
    │   │   │       │   ├── frmIE.designer.cs
    │   │   │       │   ├── frmIE.resx
    │   │   │       │   ├── frmNeatenFavorites.cs
    │   │   │       │   ├── frmNeatenFavorites.designer.cs
    │   │   │       │   ├── frmNeatenFavorites.resx
    │   │   │       │   ├── frmOpenFavorites.cs
    │   │   │       │   ├── frmOpenFavorites.designer.cs
    │   │   │       │   ├── frmOpenFavorites.resx
    │   │   │       │   ├── frmSource.cs
    │   │   │       │   ├── frmSource.designer.cs
    │   │   │       │   ├── frmSource.resx
    │   │   │       │   ├── IEImage
    │   │   │       │   │   ├── 主页.ico
    │   │   │       │   │   ├── 停止.ico
    │   │   │       │   │   ├── 刷新.ico
    │   │   │       │   │   ├── 前进.ico
    │   │   │       │   │   ├── 后退.ico
    │   │   │       │   │   ├── 打印.ico
    │   │   │       │   │   ├── 搜索.ico
    │   │   │       │   │   ├── 新建.ico
    │   │   │       │   │   ├── 浏览器.ico
    │   │   │       │   │   └── 转到.ico
    │   │   │       │   ├── MyWebIE.csproj
    │   │   │       │   ├── obj
    │   │   │       │   │   └── Debug
    │   │   │       │   │       ├── MyWebIE.csproj.FileListAbsolute.txt
    │   │   │       │   │       ├── MyWebIE.csproj.GenerateResource.Cache
    │   │   │       │   │       ├── MyWebIE.exe
    │   │   │       │   │       ├── MyWebIE.frmIE.resources
    │   │   │       │   │       ├── MyWebIE.frmNeatenFavorites.resources
    │   │   │       │   │       ├── MyWebIE.frmOpenFavorites.resources
    │   │   │       │   │       ├── MyWebIE.frmSource.resources
    │   │   │       │   │       ├── MyWebIE.pdb
    │   │   │       │   │       └── MyWebIE.Properties.Resources.resources
    │   │   │       │   ├── Program.cs
    │   │   │       │   └── Properties
    │   │   │       │       ├── AssemblyInfo.cs
    │   │   │       │       ├── Resources.Designer.cs
    │   │   │       │       ├── Resources.resx
    │   │   │       │       ├── Settings.Designer.cs
    │   │   │       │       └── Settings.settings
    │   │   │       ├── MyWebIE.sln
    │   │   │       └── MyWebIE.suo
    │   │   └── 魔法兔子
    │   │       └── MagicCony
    │   │           ├── MagicCony
    │   │           │   ├── bin
    │   │           │   │   └── Debug
    │   │           │   │       ├── ConyData.mdb
    │   │           │   │       ├── Interop.IWshRuntimeLibrary.dll
    │   │           │   │       ├── MagicCony.exe
    │   │           │   │       ├── MagicCony.pdb
    │   │           │   │       ├── MagicCony.vshost.exe
    │   │           │   │       └── MagicCony.vshost.exe.manifest
    │   │           │   ├── ConyData.mdb
    │   │           │   ├── frmCheck.cs
    │   │           │   ├── frmCheck.Designer.cs
    │   │           │   ├── frmCheck.resx
    │   │           │   ├── frmCloseWindows.cs
    │   │           │   ├── frmCloseWindows.Designer.cs
    │   │           │   ├── frmCloseWindows.resx
    │   │           │   ├── frmCony.cs
    │   │           │   ├── frmCony.Designer.cs
    │   │           │   ├── frmCony.resx
    │   │           │   ├── frmLogin.cs
    │   │           │   ├── frmLogin.Designer.cs
    │   │           │   ├── frmLogin.resx
    │   │           │   ├── frmSetPassword.cs
    │   │           │   ├── frmSetPassword.Designer.cs
    │   │           │   ├── frmSetPassword.resx
    │   │           │   ├── frmSystemCheck.cs
    │   │           │   ├── frmSystemCheck.Designer.cs
    │   │           │   ├── frmSystemCheck.resx
    │   │           │   ├── frmSystemOptimize.cs
    │   │           │   ├── frmSystemOptimize.Designer.cs
    │   │           │   ├── frmSystemOptimize.resx
    │   │           │   ├── HTMLPage1.htm
    │   │           │   ├── Images
    │   │           │   │   ├── 00.jpg
    │   │           │   │   ├── a1_03.jpg
    │   │           │   │   ├── {A517F4CE-3605-4B3E-865C-7D84F59C539C}.bmp
    │   │           │   │   ├── anniu.jpg
    │   │           │   │   ├── bg.png
    │   │           │   │   ├── chongqi.ico
    │   │           │   │   ├── close.png
    │   │           │   │   ├── comp.JPG
    │   │           │   │   ├── delete_06.gif
    │   │           │   │   ├── dxdiag.JPG
    │   │           │   │   ├── gb.png
    │   │           │   │   ├── gpedit.JPG
    │   │           │   │   ├── mima.ico
    │   │           │   │   ├── ram.JPG
    │   │           │   │   ├── reg.JPG
    │   │           │   │   ├── renwu.ico
    │   │           │   │   ├── roll_voer_54.png
    │   │           │   │   ├── shutdown.jpg
    │   │           │   │   ├── title_bg_quit.gif
    │   │           │   │   ├── up_56.png
    │   │           │   │   ├── up_60.png
    │   │           │   │   ├── zx.png
    │   │           │   │   ├── 发送到菜单1_03.jpg
    │   │           │   │   ├── 发送到菜单2_07.jpg
    │   │           │   │   ├── 发送到菜单3_10.jpg
    │   │           │   │   ├── 发送到菜单56_10.jpg
    │   │           │   │   ├── 图标 (57).ico
    │   │           │   │   ├── 图标 (58).ico
    │   │           │   │   ├── 图标 (5).PNG
    │   │           │   │   ├── 系统优化_07.jpg
    │   │           │   │   ├── 系统优化_09.jpg
    │   │           │   │   ├── 系统优化_11.jpg
    │   │           │   │   ├── 系统优化_13.jpg
    │   │           │   │   ├── 系统优化bg_06.jpg
    │   │           │   │   ├── 系统优化tou_03.jpg
    │   │           │   │   ├── 系统检测_03.jpg
    │   │           │   │   ├── 系统检测bg_06.jpg
    │   │           │   │   ├── 系统检测tc_07.jpg
    │   │           │   │   ├── 背景_03.jpg
    │   │           │   │   └── 魔法兔子主界面_03.jpg
    │   │           │   ├── MagicCony.csproj
    │   │           │   ├── MagicCony.csproj.user
    │   │           │   ├── obj
    │   │           │   │   ├── Debug
    │   │           │   │   │   ├── Interop.IWshRuntimeLibrary.dll
    │   │           │   │   │   ├── MagicCony.csproj.FileListAbsolute.txt
    │   │           │   │   │   ├── MagicCony.csproj.GenerateResource.Cache
    │   │           │   │   │   ├── MagicCony.csproj.ResolveComReference.cache
    │   │           │   │   │   ├── MagicCony.exe
    │   │           │   │   │   ├── MagicCony.frmCheck.resources
    │   │           │   │   │   ├── MagicCony.frmCloseWindows.resources
    │   │           │   │   │   ├── MagicCony.frmCony.resources
    │   │           │   │   │   ├── MagicCony.frmLogin.resources
    │   │           │   │   │   ├── MagicCony.frmSetPassword.resources
    │   │           │   │   │   ├── MagicCony.frmSystemCheck.resources
    │   │           │   │   │   ├── MagicCony.frmSystemOptimize.resources
    │   │           │   │   │   ├── MagicCony.pdb
    │   │           │   │   │   └── MagicCony.Properties.Resources.resources
    │   │           │   │   └── MagicCony.csproj.FileList.txt
    │   │           │   ├── Program.cs
    │   │           │   ├── Properties
    │   │           │   │   ├── AssemblyInfo.cs
    │   │           │   │   ├── Resources.Designer.cs
    │   │           │   │   ├── Resources.resx
    │   │           │   │   ├── Settings.Designer.cs
    │   │           │   │   └── Settings.settings
    │   │           │   └── PublicClass.cs
    │   │           ├── MagicCony.sln
    │   │           └── MagicCony.suo
    │   └── 实用模块
    │       ├── EXE文件加密器模块
    │       │   ├── DispelFormality
    │       │   │   ├── DispelFormality
    │       │   │   │   ├── bin
    │       │   │   │   │   └── Debug
    │       │   │   │   │       ├── DispelFormality.exe
    │       │   │   │   │       ├── DispelFormality.pdb
    │       │   │   │   │       ├── DispelFormality.TXT
    │       │   │   │   │       ├── DispelFormality.vshost.exe
    │       │   │   │   │       └── DispelFormality.vshost.exe.manifest
    │       │   │   │   ├── DispelFormality.csproj
    │       │   │   │   ├── Frm_Dispel.cs
    │       │   │   │   ├── Frm_Dispel.Designer.cs
    │       │   │   │   ├── Frm_Dispel.resx
    │       │   │   │   ├── Frm_Logon.cs
    │       │   │   │   ├── Frm_Logon.Designer.cs
    │       │   │   │   ├── Frm_Logon.resx
    │       │   │   │   ├── Frm_Main.cs
    │       │   │   │   ├── Frm_Main.Designer.cs
    │       │   │   │   ├── Frm_Main.resx
    │       │   │   │   ├── obj
    │       │   │   │   │   ├── Debug
    │       │   │   │   │   │   ├── DispelFormality.csproj.FileListAbsolute.txt
    │       │   │   │   │   │   ├── DispelFormality.csproj.GenerateResource.Cache
    │       │   │   │   │   │   ├── DispelFormality.exe
    │       │   │   │   │   │   ├── DispelFormality.Frm_Dispel.resources
    │       │   │   │   │   │   ├── DispelFormality.Frm_Logon.resources
    │       │   │   │   │   │   ├── DispelFormality.Frm_Main.resources
    │       │   │   │   │   │   ├── DispelFormality.pdb
    │       │   │   │   │   │   └── DispelFormality.Properties.Resources.resources
    │       │   │   │   │   └── DispelFormality.csproj.FileList.txt
    │       │   │   │   ├── Program.cs
    │       │   │   │   └── Properties
    │       │   │   │       ├── AssemblyInfo.cs
    │       │   │   │       ├── Resources.Designer.cs
    │       │   │   │       ├── Resources.resx
    │       │   │   │       ├── Settings.Designer.cs
    │       │   │   │       └── Settings.settings
    │       │   │   ├── DispelFormality.sln
    │       │   │   └── DispelFormality.suo
    │       │   └── FormalityEncryet
    │       │       ├── FormalityEncryet
    │       │       │   ├── bin
    │       │       │   │   └── Debug
    │       │       │   │       ├── FormalityEncryet.exe
    │       │       │   │       ├── FormalityEncryet.pdb
    │       │       │   │       ├── FormalityEncryet.vshost.exe
    │       │       │   │       └── FormalityEncryet.vshost.exe.manifest
    │       │       │   ├── FormalityEncryet.csproj
    │       │       │   ├── Frm_Encryption.cs
    │       │       │   ├── Frm_Encryption.Designer.cs
    │       │       │   ├── Frm_Encryption.resx
    │       │       │   ├── Hardware.cs
    │       │       │   ├── obj
    │       │       │   │   ├── Debug
    │       │       │   │   │   ├── FormalityEncryet.csproj.FileListAbsolute.txt
    │       │       │   │   │   ├── FormalityEncryet.csproj.GenerateResource.Cache
    │       │       │   │   │   ├── FormalityEncryet.exe
    │       │       │   │   │   ├── FormalityEncryet.Frm_Encryption.resources
    │       │       │   │   │   ├── FormalityEncryet.pdb
    │       │       │   │   │   └── FormalityEncryet.Properties.Resources.resources
    │       │       │   │   ├── FormalityEncryet.csproj.FileListAbsolute.txt
    │       │       │   │   └── FormalityEncryet.csproj.FileList.txt
    │       │       │   ├── Program.cs
    │       │       │   └── Properties
    │       │       │       ├── AssemblyInfo.cs
    │       │       │       ├── Resources.Designer.cs
    │       │       │       ├── Resources.resx
    │       │       │       ├── Settings.Designer.cs
    │       │       │       └── Settings.settings
    │       │       ├── FormalityEncryet.sln
    │       │       └── FormalityEncryet.suo
    │       ├── FTP文件管理模块
    │       │   └── FTP-LS
    │       │       ├── FTP-LS
    │       │       │   ├── bin
    │       │       │   │   └── Debug
    │       │       │   │       ├── FTP-LS.exe
    │       │       │   │       ├── FTP-LS.pdb
    │       │       │   │       ├── FTP-LS.vshost.exe
    │       │       │   │       └── FTP-LS.vshost.exe.manifest
    │       │       │   ├── frmMain.cs
    │       │       │   ├── frmMain.Designer.cs
    │       │       │   ├── frmMain.resx
    │       │       │   ├── frmNewFolder.cs
    │       │       │   ├── frmNewFolder.Designer.cs
    │       │       │   ├── frmNewFolder.resx
    │       │       │   ├── FTPClass
    │       │       │   │   └── BaseClass.cs
    │       │       │   ├── FTPImages
    │       │       │   │   ├── ftp.ico
    │       │       │   │   ├── ww.png
    │       │       │   │   ├── 上传.ico
    │       │       │   │   ├── 下载.ico
    │       │       │   │   ├── 全选.ico
    │       │       │   │   ├── 删除.ico
    │       │       │   │   ├── 剪切.ico
    │       │       │   │   ├── 复制.ico
    │       │       │   │   ├── 打开.ico
    │       │       │   │   ├── 新建.ico
    │       │       │   │   ├── 清空.ico
    │       │       │   │   ├── 粘贴.ico
    │       │       │   │   ├── 退出.ico
    │       │       │   │   └── 重命名.ico
    │       │       │   ├── FTP-LS.csproj
    │       │       │   ├── FTP-LS.csproj.user
    │       │       │   ├── obj
    │       │       │   │   ├── Debug
    │       │       │   │   │   ├── FTP-LS.csproj.FileListAbsolute.txt
    │       │       │   │   │   ├── FTP-LS.csproj.GenerateResource.Cache
    │       │       │   │   │   ├── FTP-LS.exe
    │       │       │   │   │   ├── FTP_LS.frmMain.resources
    │       │       │   │   │   ├── FTP_LS.frmNewFolder.resources
    │       │       │   │   │   ├── FTP-LS.pdb
    │       │       │   │   │   └── FTP_LS.Properties.Resources.resources
    │       │       │   │   ├── FTP-LS.csproj.FileListAbsolute.txt
    │       │       │   │   └── FTP-LS.csproj.FileList.txt
    │       │       │   ├── Program.cs
    │       │       │   └── Properties
    │       │       │       ├── AssemblyInfo.cs
    │       │       │       ├── Resources.Designer.cs
    │       │       │       ├── Resources.resx
    │       │       │       ├── Settings.Designer.cs
    │       │       │       └── Settings.settings
    │       │       ├── FTP-LS.sln
    │       │       └── FTP-LS.suo
    │       ├── 万能打印模块
    │       │   ├── DataBase
    │       │   │   ├── db_mrsql_Data.MDF
    │       │   │   └── db_mrsql_Log.LDF
    │       │   ├── DLLFullPrint
    │       │   │   ├── DLLFullPrint
    │       │   │   │   ├── bin
    │       │   │   │   │   └── Debug
    │       │   │   │   │       ├── DLLFullPrint.dll
    │       │   │   │   │       └── DLLFullPrint.pdb
    │       │   │   │   ├── DLLFullPrint.csproj
    │       │   │   │   ├── Frm_PrintSet.cs
    │       │   │   │   ├── Frm_PrintSet.Designer.cs
    │       │   │   │   ├── Frm_PrintSet.resx
    │       │   │   │   ├── MyDLL.cs
    │       │   │   │   ├── obj
    │       │   │   │   │   ├── Debug
    │       │   │   │   │   │   ├── DLLFullPrint.csproj.FileListAbsolute.txt
    │       │   │   │   │   │   ├── DLLFullPrint.csproj.GenerateResource.Cache
    │       │   │   │   │   │   ├── DLLFullPrint.dll
    │       │   │   │   │   │   ├── DLLFullPrint.Frm_PrintSet.resources
    │       │   │   │   │   │   └── DLLFullPrint.pdb
    │       │   │   │   │   ├── DLLFullPrint.csproj.FileListAbsolute.txt
    │       │   │   │   │   └── DLLFullPrint.csproj.FileList.txt
    │       │   │   │   ├── PrintClass.cs
    │       │   │   │   └── Properties
    │       │   │   │       └── AssemblyInfo.cs
    │       │   │   ├── DLLFullPrint.sln
    │       │   │   └── DLLFullPrint.suo
    │       │   └── TransferPrint
    │       │       ├── TransferPrint
    │       │       │   ├── bin
    │       │       │   │   └── Debug
    │       │       │   │       ├── DLLFullPrint.dll
    │       │       │   │       ├── DLLFullPrint.pdb
    │       │       │   │       ├── TransferPrint.exe
    │       │       │   │       ├── TransferPrint.pdb
    │       │       │   │       ├── TransferPrint.vshost.exe
    │       │       │   │       └── TransferPrint.vshost.exe.manifest
    │       │       │   ├── Form1.cs
    │       │       │   ├── Form1.Designer.cs
    │       │       │   ├── Form1.resx
    │       │       │   ├── obj
    │       │       │   │   ├── Debug
    │       │       │   │   │   ├── ResolveAssemblyReference.cache
    │       │       │   │   │   ├── TransferPrint.csproj.FileListAbsolute.txt
    │       │       │   │   │   ├── TransferPrint.csproj.GenerateResource.Cache
    │       │       │   │   │   ├── TransferPrint.exe
    │       │       │   │   │   ├── TransferPrint.Form1.resources
    │       │       │   │   │   ├── TransferPrint.pdb
    │       │       │   │   │   └── TransferPrint.Properties.Resources.resources
    │       │       │   │   ├── TransferPrint.csproj.FileListAbsolute.txt
    │       │       │   │   └── TransferPrint.csproj.FileList.txt
    │       │       │   ├── Program.cs
    │       │       │   ├── Properties
    │       │       │   │   ├── AssemblyInfo.cs
    │       │       │   │   ├── Resources.Designer.cs
    │       │       │   │   ├── Resources.resx
    │       │       │   │   ├── Settings.Designer.cs
    │       │       │   │   └── Settings.settings
    │       │       │   └── TransferPrint.csproj
    │       │       ├── TransferPrint.sln
    │       │       └── TransferPrint.suo
    │       ├── 万能搜索模块
    │       │   ├── DataBase
    │       │   │   ├── db_AllFind_Data.MDF
    │       │   │   └── db_AllFind_Log.LDF
    │       │   ├── FullFind
    │       │   │   ├── FullFind
    │       │   │   │   ├── bin
    │       │   │   │   │   └── Debug
    │       │   │   │   │       ├── FullFind.dll
    │       │   │   │   │       └── FullFind.pdb
    │       │   │   │   ├── Frm_IfFind.cs
    │       │   │   │   ├── Frm_IfFind.Designer.cs
    │       │   │   │   ├── Frm_IfFind.resx
    │       │   │   │   ├── FullFind.csproj
    │       │   │   │   ├── ModuleClass
    │       │   │   │   │   ├── DataClass.cs
    │       │   │   │   │   └── FrmClass.cs
    │       │   │   │   ├── MyDLL.cs
    │       │   │   │   ├── obj
    │       │   │   │   │   ├── Debug
    │       │   │   │   │   │   ├── FullFind.csproj.FileListAbsolute.txt
    │       │   │   │   │   │   ├── FullFind.csproj.GenerateResource.Cache
    │       │   │   │   │   │   ├── FullFind.dll
    │       │   │   │   │   │   ├── FullFind.Frm_IfFind.resources
    │       │   │   │   │   │   └── FullFind.pdb
    │       │   │   │   │   └── FullFind.csproj.FileList.txt
    │       │   │   │   ├── Program.cs
    │       │   │   │   └── Properties
    │       │   │   │       └── AssemblyInfo.cs
    │       │   │   ├── FullFind.sln
    │       │   │   └── FullFind.suo
    │       │   └── TransferFormality
    │       │       ├── TransferFormality
    │       │       │   ├── bin
    │       │       │   │   └── Debug
    │       │       │   │       ├── AllFind.exe
    │       │       │   │       ├── FullFind.dll
    │       │       │   │       ├── FullFind.pdb
    │       │       │   │       ├── TransferFormality.exe
    │       │       │   │       ├── TransferFormality.pdb
    │       │       │   │       ├── TransferFormality.vshost.exe
    │       │       │   │       └── TransferFormality.vshost.exe.manifest
    │       │       │   ├── Form1.cs
    │       │       │   ├── Form1.Designer.cs
    │       │       │   ├── Form1.resx
    │       │       │   ├── obj
    │       │       │   │   ├── Debug
    │       │       │   │   │   ├── ResolveAssemblyReference.cache
    │       │       │   │   │   ├── TransferFormality.csproj.FileListAbsolute.txt
    │       │       │   │   │   ├── TransferFormality.csproj.GenerateResource.Cache
    │       │       │   │   │   ├── TransferFormality.exe
    │       │       │   │   │   ├── TransferFormality.Form1.resources
    │       │       │   │   │   ├── TransferFormality.pdb
    │       │       │   │   │   └── TransferFormality.Properties.Resources.resources
    │       │       │   │   └── TransferFormality.csproj.FileList.txt
    │       │       │   ├── Program.cs
    │       │       │   ├── Properties
    │       │       │   │   ├── AssemblyInfo.cs
    │       │       │   │   ├── Resources.Designer.cs
    │       │       │   │   ├── Resources.resx
    │       │       │   │   ├── Settings.Designer.cs
    │       │       │   │   └── Settings.settings
    │       │       │   └── TransferFormality.csproj
    │       │       ├── TransferFormality.sln
    │       │       └── TransferFormality.suo
    │       ├── 决策分析模块
    │       │   ├── ChartComponent
    │       │   │   ├── bin
    │       │   │   │   └── Debug
    │       │   │   │       ├── ChartComponent.dll
    │       │   │   │       └── ChartComponent.pdb
    │       │   │   ├── ChartComponent.csproj
    │       │   │   ├── ChartComponent.sln
    │       │   │   ├── ChartComponent.suo
    │       │   │   ├── ChartPanel.cs
    │       │   │   ├── ChartPanel.Designer.cs
    │       │   │   ├── ChartPanel.resx
    │       │   │   ├── obj
    │       │   │   │   ├── ChartComponent.csproj.FileListAbsolute.txt
    │       │   │   │   ├── ChartComponent.csproj.FileList.txt
    │       │   │   │   └── Debug
    │       │   │   │       ├── ChartComponent.ChartPanel.resources
    │       │   │   │       ├── ChartComponent.csproj.FileListAbsolute.txt
    │       │   │   │       ├── ChartComponent.csproj.GenerateResource.Cache
    │       │   │   │       ├── ChartComponent.dll
    │       │   │   │       ├── ChartComponent.pdb
    │       │   │   │       ├── Refactor
    │       │   │   │       └── TempPE
    │       │   │   └── Properties
    │       │   │       └── AssemblyInfo.cs
    │       │   ├── DataBase
    │       │   │   ├── MR_Distribution_Data.MDF
    │       │   │   └── MR_Distribution_Log.LDF
    │       │   ├── Rendering
    │       │   │   ├── Rendering
    │       │   │   │   ├── bin
    │       │   │   │   │   └── Debug
    │       │   │   │   │       ├── ChartComponent.dll
    │       │   │   │   │       ├── ChartComponent.pdb
    │       │   │   │   │       ├── Rendering.dll
    │       │   │   │   │       └── Rendering.pdb
    │       │   │   │   ├── Frm_Appear.cs
    │       │   │   │   ├── Frm_Appear.Designer.cs
    │       │   │   │   ├── Frm_Appear.resx
    │       │   │   │   ├── Frm_Stat.cs
    │       │   │   │   ├── Frm_Stat.Designer.cs
    │       │   │   │   ├── Frm_Statistics.cs
    │       │   │   │   ├── Frm_Statistics.Designer.cs
    │       │   │   │   ├── Frm_Statistics.resx
    │       │   │   │   ├── Frm_Stat.resx
    │       │   │   │   ├── Image
    │       │   │   │   │   └── Appear.bmp
    │       │   │   │   ├── ModuleClass
    │       │   │   │   │   ├── DataClass.cs
    │       │   │   │   │   └── FrmClass.cs
    │       │   │   │   ├── MyDLL.cs
    │       │   │   │   ├── obj
    │       │   │   │   │   ├── Debug
    │       │   │   │   │   │   ├── Rendering.csproj.FileListAbsolute.txt
    │       │   │   │   │   │   ├── Rendering.csproj.GenerateResource.Cache
    │       │   │   │   │   │   ├── Rendering.dll
    │       │   │   │   │   │   ├── Rendering.Frm_Appear.resources
    │       │   │   │   │   │   ├── Rendering.Frm_Statistics.resources
    │       │   │   │   │   │   ├── Rendering.Frm_Stat.resources
    │       │   │   │   │   │   ├── Rendering.pdb
    │       │   │   │   │   │   ├── Rendering.Properties.Resources.resources
    │       │   │   │   │   │   └── ResolveAssemblyReference.cache
    │       │   │   │   │   ├── Rendering.csproj.FileListAbsolute.txt
    │       │   │   │   │   └── Rendering.csproj.FileList.txt
    │       │   │   │   ├── Properties
    │       │   │   │   │   ├── AssemblyInfo.cs
    │       │   │   │   │   ├── Resources.Designer.cs
    │       │   │   │   │   └── Resources.resx
    │       │   │   │   └── Rendering.csproj
    │       │   │   ├── Rendering.sln
    │       │   │   └── Rendering.suo
    │       │   └── TransferFormality
    │       │       ├── TransferFormality
    │       │       │   ├── bin
    │       │       │   │   └── Debug
    │       │       │   │       ├── ChartComponent.dll
    │       │       │   │       ├── ChartComponent.pdb
    │       │       │   │       ├── Rendering.dll
    │       │       │   │       ├── Rendering.pdb
    │       │       │   │       ├── TransferFormality.exe
    │       │       │   │       ├── TransferFormality.pdb
    │       │       │   │       ├── TransferFormality.vshost.exe
    │       │       │   │       └── TransferFormality.vshost.exe.manifest
    │       │       │   ├── MyMain.cs
    │       │       │   ├── MyMain.Designer.cs
    │       │       │   ├── MyMain.resx
    │       │       │   ├── obj
    │       │       │   │   ├── Debug
    │       │       │   │   │   ├── ResolveAssemblyReference.cache
    │       │       │   │   │   ├── TransferFormality.csproj.FileListAbsolute.txt
    │       │       │   │   │   ├── TransferFormality.csproj.GenerateResource.Cache
    │       │       │   │   │   ├── TransferFormality.exe
    │       │       │   │   │   ├── TransferFormality.MyMain.resources
    │       │       │   │   │   ├── TransferFormality.pdb
    │       │       │   │   │   └── TransferFormality.Properties.Resources.resources
    │       │       │   │   ├── TransferFormality.csproj.FileListAbsolute.txt
    │       │       │   │   └── TransferFormality.csproj.FileList.txt
    │       │       │   ├── Program.cs
    │       │       │   ├── Properties
    │       │       │   │   ├── AssemblyInfo.cs
    │       │       │   │   ├── Resources.Designer.cs
    │       │       │   │   ├── Resources.resx
    │       │       │   │   ├── Settings.Designer.cs
    │       │       │   │   └── Settings.settings
    │       │       │   └── TransferFormality.csproj
    │       │       ├── TransferFormality.sln
    │       │       └── TransferFormality.suo
    │       ├── 在线升级模块
    │       │   └── Upgrade
    │       │       ├── Upgrade
    │       │       │   ├── bin
    │       │       │   │   └── Debug
    │       │       │   │       ├── Update.xml
    │       │       │   │       ├── UpgradeClass.dll
    │       │       │   │       ├── UpgradeClass.pdb
    │       │       │   │       ├── Upgrade.exe
    │       │       │   │       ├── Upgrade.pdb
    │       │       │   │       ├── UpgradeSet.ini
    │       │       │   │       ├── Upgrade.vshost.exe
    │       │       │   │       └── Upgrade.vshost.exe.manifest
    │       │       │   ├── frmMain.cs
    │       │       │   ├── frmMain.Designer.cs
    │       │       │   ├── frmMain.resx
    │       │       │   ├── frmSet.cs
    │       │       │   ├── frmSet.Designer.cs
    │       │       │   ├── frmSet.resx
    │       │       │   ├── frmUpdate.cs
    │       │       │   ├── frmUpdate.Designer.cs
    │       │       │   ├── frmUpdate.resx
    │       │       │   ├── obj
    │       │       │   │   ├── Debug
    │       │       │   │   │   ├── ResolveAssemblyReference.cache
    │       │       │   │   │   ├── Upgrade.csproj.FileListAbsolute.txt
    │       │       │   │   │   ├── Upgrade.csproj.GenerateResource.Cache
    │       │       │   │   │   ├── Upgrade.exe
    │       │       │   │   │   ├── Upgrade.frmMain.resources
    │       │       │   │   │   ├── Upgrade.frmSet.resources
    │       │       │   │   │   ├── Upgrade.frmUpdate.resources
    │       │       │   │   │   ├── Upgrade.pdb
    │       │       │   │   │   └── Upgrade.Properties.Resources.resources
    │       │       │   │   ├── Upgrade.csproj.FileListAbsolute.txt
    │       │       │   │   └── Upgrade.csproj.FileList.txt
    │       │       │   ├── Program.cs
    │       │       │   ├── Properties
    │       │       │   │   ├── AssemblyInfo.cs
    │       │       │   │   ├── Resources.Designer.cs
    │       │       │   │   ├── Resources.resx
    │       │       │   │   ├── Settings.Designer.cs
    │       │       │   │   └── Settings.settings
    │       │       │   ├── Upgrade.csproj
    │       │       │   └── Upgrade.csproj.user
    │       │       ├── UpgradeClass
    │       │       │   ├── bin
    │       │       │   │   └── Debug
    │       │       │   │       ├── UpgradeClass.dll
    │       │       │   │       └── UpgradeClass.pdb
    │       │       │   ├── obj
    │       │       │   │   ├── Debug
    │       │       │   │   │   ├── UpgradeClass.csproj.FileListAbsolute.txt
    │       │       │   │   │   ├── UpgradeClass.dll
    │       │       │   │   │   └── UpgradeClass.pdb
    │       │       │   │   └── UpgradeClass.csproj.FileListAbsolute.txt
    │       │       │   ├── OperateClass.cs
    │       │       │   ├── Properties
    │       │       │   │   └── AssemblyInfo.cs
    │       │       │   └── UpgradeClass.csproj
    │       │       ├── UpgradeServer
    │       │       │   ├── bin
    │       │       │   │   └── Debug
    │       │       │   │       ├── UpgradeClass.dll
    │       │       │   │       ├── UpgradeClass.pdb
    │       │       │   │       ├── UpgradeServer.exe
    │       │       │   │       ├── UpgradeServer.pdb
    │       │       │   │       ├── UpgradeServer.vshost.exe
    │       │       │   │       └── UpgradeServer.vshost.exe.manifest
    │       │       │   ├── frmMain.cs
    │       │       │   ├── frmMain.designer.cs
    │       │       │   ├── frmMain.resx
    │       │       │   ├── frmNewFolder.cs
    │       │       │   ├── frmNewFolder.designer.cs
    │       │       │   ├── frmNewFolder.resx
    │       │       │   ├── obj
    │       │       │   │   ├── Debug
    │       │       │   │   │   ├── ResolveAssemblyReference.cache
    │       │       │   │   │   ├── UpgradeServer.csproj.FileListAbsolute.txt
    │       │       │   │   │   ├── UpgradeServer.csproj.GenerateResource.Cache
    │       │       │   │   │   ├── UpgradeServer.exe
    │       │       │   │   │   ├── UpgradeServer.frmMain.resources
    │       │       │   │   │   ├── UpgradeServer.frmNewFolder.resources
    │       │       │   │   │   ├── UpgradeServer.pdb
    │       │       │   │   │   └── UpgradeServer.Properties.Resources.resources
    │       │       │   │   ├── UpgradeServer.csproj.FileListAbsolute.txt
    │       │       │   │   └── UpgradeServer.csproj.FileList.txt
    │       │       │   ├── Program.cs
    │       │       │   ├── Properties
    │       │       │   │   ├── AssemblyInfo.cs
    │       │       │   │   ├── Resources.Designer.cs
    │       │       │   │   ├── Resources.resx
    │       │       │   │   ├── Settings.Designer.cs
    │       │       │   │   └── Settings.settings
    │       │       │   └── UpgradeServer.csproj
    │       │       ├── UpgradeSetup
    │       │       │   ├── Debug
    │       │       │   │   ├── setup.exe
    │       │       │   │   └── UpgradeSetup.msi
    │       │       │   ├── Release
    │       │       │   └── UpgradeSetup.vdproj
    │       │       ├── Upgrade.sln
    │       │       └── Upgrade.suo
    │       ├── 多媒体播放器模块
    │       │   └── PlayApparatus
    │       │       ├── PlayApparatus
    │       │       │   ├── bin
    │       │       │   │   └── Debug
    │       │       │   │       ├── AxInterop.WMPLib.dll
    │       │       │   │       ├── FrmClassDepot.dll
    │       │       │   │       ├── Interop.Scripting.dll
    │       │       │   │       ├── Interop.Shell32.dll
    │       │       │   │       ├── Interop.WMPLib.dll
    │       │       │   │       ├── PlayApparatus.exe
    │       │       │   │       ├── PlayApparatus.pdb
    │       │       │   │       ├── PlayApparatus.vshost.exe
    │       │       │   │       └── PlayApparatus.vshost.exe.manifest
    │       │       │   ├── FrmClass.cs
    │       │       │   ├── Frm_Libretto.cs
    │       │       │   ├── Frm_Libretto.Designer.cs
    │       │       │   ├── Frm_Libretto.resx
    │       │       │   ├── Frm_ListBox.cs
    │       │       │   ├── Frm_ListBox.Designer.cs
    │       │       │   ├── Frm_ListBox.resx
    │       │       │   ├── Frm_Play.cs
    │       │       │   ├── Frm_Play.Designer.cs
    │       │       │   ├── Frm_Play.resx
    │       │       │   ├── Frm_Screen.cs
    │       │       │   ├── Frm_Screen.Designer.cs
    │       │       │   ├── Frm_Screen.resx
    │       │       │   ├── Image
    │       │       │   │   ├── EQ.png
    │       │       │   │   ├── EQ变.png
    │       │       │   │   ├── LRC.png
    │       │       │   │   ├── LRC变.png
    │       │       │   │   ├── PL.png
    │       │       │   │   ├── PL变.png
    │       │       │   │   ├── WF.png
    │       │       │   │   ├── WF变.png
    │       │       │   │   ├── 停止按钮.png
    │       │       │   │   ├── 停止按钮变.png
    │       │       │   │   ├── 关闭按钮.jpg
    │       │       │   │   ├── 关闭按钮变色.jpg
    │       │       │   │   ├── 内部边框.png
    │       │       │   │   ├── 列表导航.png
    │       │       │   │   ├── 前进按钮.png
    │       │       │   │   ├── 前进按钮变.png
    │       │       │   │   ├── 右侧边框.png
    │       │       │   │   ├── 后退按钮.png
    │       │       │   │   ├── 后退按钮变.png
    │       │       │   │   ├── 左侧边框(1).png
    │       │       │   │   ├── 左侧边框.png
    │       │       │   │   ├── 底1.png
    │       │       │   │   ├── 底2.png
    │       │       │   │   ├── 底3.png
    │       │       │   │   ├── 底部边框1.png
    │       │       │   │   ├── 底部边框2.png
    │       │       │   │   ├── 底部边框3.png
    │       │       │   │   ├── 底部边框.png
    │       │       │   │   ├── 总标题1.png
    │       │       │   │   ├── 总标题2.png
    │       │       │   │   ├── 总标题3.png
    │       │       │   │   ├── 总标题.png
    │       │       │   │   ├── 打开文件列表.png
    │       │       │   │   ├── 打开文件列表变.png
    │       │       │   │   ├── 控件背是.png
    │       │       │   │   ├── 控件背景.png
    │       │       │   │   ├── 播放列表关闭按钮变.png
    │       │       │   │   ├── 播放列表的关闭按钮原.png
    │       │       │   │   ├── 播放器背景1.png
    │       │       │   │   ├── 播放器背景2.png
    │       │       │   │   ├── 播放器背景.png
    │       │       │   │   ├── 播放器背景下.png
    │       │       │   │   ├── 播放器背景中.png
    │       │       │   │   ├── 播放按钮.png
    │       │       │   │   ├── 播放按钮变.png
    │       │       │   │   ├── 暂停按钮.png
    │       │       │   │   ├── 暂停按钮变.png
    │       │       │   │   ├── 最小化按钮.jpg
    │       │       │   │   ├── 最小化按钮变色.jpg
    │       │       │   │   ├── 标题栏.png
    │       │       │   │   ├── 歌词秀.png
    │       │       │   │   ├── 滚动.png
    │       │       │   │   ├── 滚动变色.png
    │       │       │   │   ├── 滚动块.png
    │       │       │   │   ├── 背景.png
    │       │       │   │   ├── 音量按钮.png
    │       │       │   │   ├── 音量按钮变色.png
    │       │       │   │   ├── 音量滚动.png
    │       │       │   │   ├── 音量滚动变色.png
    │       │       │   │   └── 音量滚动块.png
    │       │       │   ├── obj
    │       │       │   │   ├── Debug
    │       │       │   │   │   ├── AxInterop.WMPLib.dll
    │       │       │   │   │   ├── Interop.Scripting.dll
    │       │       │   │   │   ├── Interop.Shell32.dll
    │       │       │   │   │   ├── Interop.WMPLib.dll
    │       │       │   │   │   ├── PlayApparatus.csproj.FileListAbsolute.txt
    │       │       │   │   │   ├── PlayApparatus.csproj.GenerateResource.Cache
    │       │       │   │   │   ├── PlayApparatus.csproj.ResolveComReference.cache
    │       │       │   │   │   ├── PlayApparatus.exe
    │       │       │   │   │   ├── PlayApparatus.Frm_Libretto.resources
    │       │       │   │   │   ├── PlayApparatus.Frm_ListBox.resources
    │       │       │   │   │   ├── PlayApparatus.Frm_Play.resources
    │       │       │   │   │   ├── PlayApparatus.Frm_Screen.resources
    │       │       │   │   │   ├── PlayApparatus.pdb
    │       │       │   │   │   ├── PlayApparatus.Properties.Resources.resources
    │       │       │   │   │   └── ResolveAssemblyReference.cache
    │       │       │   │   ├── PlayApparatus.csproj.FileListAbsolute.txt
    │       │       │   │   └── PlayApparatus.csproj.FileList.txt
    │       │       │   ├── PlayApparatus.csproj
    │       │       │   ├── PlayApparatus.csproj.user
    │       │       │   ├── Program.cs
    │       │       │   └── Properties
    │       │       │       ├── AssemblyInfo.cs
    │       │       │       ├── Resources.Designer.cs
    │       │       │       ├── Resources.resx
    │       │       │       ├── Settings.Designer.cs
    │       │       │       └── Settings.settings
    │       │       ├── PlayApparatus.sln
    │       │       └── PlayApparatus.suo
    │       └── 自定义图表控件模块
    │           └── ChartComponent
    │               ├── bin
    │               │   └── Debug
    │               │       ├── ChartComponent.dll
    │               │       └── ChartComponent.pdb
    │               ├── ChartComponent.csproj
    │               ├── ChartComponent.sln
    │               ├── ChartComponent.suo
    │               ├── ChartPanel.cs
    │               ├── ChartPanel.Designer.cs
    │               ├── ChartPanel.resx
    │               ├── obj
    │               │   ├── ChartComponent.csproj.FileListAbsolute.txt
    │               │   ├── ChartComponent.csproj.FileList.txt
    │               │   └── Debug
    │               │       ├── ChartComponent.ChartPanel.resources
    │               │       ├── ChartComponent.csproj.FileListAbsolute.txt
    │               │       ├── ChartComponent.csproj.GenerateResource.Cache
    │               │       ├── ChartComponent.dll
    │               │       ├── ChartComponent.pdb
    │               │       ├── Refactor
    │               │       └── TempPE
    │               └── Properties
    │                   └── AssemblyInfo.cs
    ├── C#编程之道光盘使用说明.doc
    └── MR
        └── Instance
            ├── 10
            │   ├── 01
            │   │   └── ManageConnection
            │   │       ├── ManageConnection
            │   │       │   ├── bin
            │   │       │   ├── ManageConnection.csproj
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       └── AssemblyInfo.cs
            │   │       ├── ManageConnection.sln
            │   │       └── ManageConnection.suo
            │   ├── 02
            │   │   └── AccessingKeepConnect
            │   │       ├── AccessingKeepConnect
            │   │       │   ├── AccessingKeepConnect.csproj
            │   │       │   ├── bin
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       └── AssemblyInfo.cs
            │   │       ├── AccessingKeepConnect.sln
            │   │       └── AccessingKeepConnect.suo
            │   ├── 03
            │   │   └── CommitSingle
            │   │       ├── CommitSingle.sln
            │   │       ├── CommitSingle.suo
            │   │       ├── DeleteDataByDataAdapter
            │   │       │   ├── bin
            │   │       │   ├── DeleteDataByDataAdapter.csproj
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       └── AssemblyInfo.cs
            │   │       ├── InsertDataByDataAdapter
            │   │       │   ├── bin
            │   │       │   ├── InsertDataByDataAdapter.csproj
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       └── AssemblyInfo.cs
            │   │       └── UpdateDataByDataAdapter
            │   │           ├── bin
            │   │           ├── obj
            │   │           ├── Program.cs
            │   │           ├── Properties
            │   │           │   └── AssemblyInfo.cs
            │   │           └── UpdateDataByDataAdapter.csproj
            │   ├── 04
            │   │   └── CommitMulti
            │   │       ├── CommitMulti.sln
            │   │       ├── CommitMulti.suo
            │   │       ├── DeleteDataByDataAdapter
            │   │       │   ├── bin
            │   │       │   ├── DeleteDataByDataAdapter.csproj
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       └── AssemblyInfo.cs
            │   │       ├── InsertDataByDataAdapter
            │   │       │   ├── bin
            │   │       │   ├── InsertDataByDataAdapter.csproj
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       └── AssemblyInfo.cs
            │   │       └── UpdateDataByDataAdapter
            │   │           ├── bin
            │   │           ├── obj
            │   │           ├── Program.cs
            │   │           ├── Properties
            │   │           │   └── AssemblyInfo.cs
            │   │           └── UpdateDataByDataAdapter.csproj
            │   ├── 05
            │   │   └── ReadDataFromXML
            │   │       ├── ReadDataFromXML
            │   │       │   ├── bin
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   └── AssemblyInfo.cs
            │   │       │   └── ReadDataFromXML.csproj
            │   │       ├── ReadDataFromXML.sln
            │   │       └── ReadDataFromXML.suo
            │   ├── 06
            │   │   └── WriterDataToXML
            │   │       ├── WriterDataToXML
            │   │       │   ├── bin
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   └── AssemblyInfo.cs
            │   │       │   └── WriterDataToXML.csproj
            │   │       ├── WriterDataToXML.sln
            │   │       └── WriterDataToXML.suo
            │   ├── 07
            │   │   └── FilterByLinq
            │   │       ├── FilterByLinq
            │   │       │   ├── bin
            │   │       │   ├── FilterByLinq.csproj
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       └── AssemblyInfo.cs
            │   │       ├── FilterByLinq.sln
            │   │       └── FilterByLinq.suo
            │   ├── 08
            │   │   └── ProjectionByLinq
            │   │       ├── ProjectionByLinq
            │   │       │   ├── bin
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── ProjectionByLinq.csproj
            │   │       │   └── Properties
            │   │       │       └── AssemblyInfo.cs
            │   │       ├── ProjectionByLinq.sln
            │   │       └── ProjectionByLinq.suo
            │   ├── 09
            │   │   └── SortByLinq
            │   │       ├── SortByLinq
            │   │       │   ├── bin
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   └── AssemblyInfo.cs
            │   │       │   └── SortByLinq.csproj
            │   │       ├── SortByLinq.sln
            │   │       └── SortByLinq.suo
            │   ├── 10
            │   │   └── PolymerizeByLinq
            │   │       ├── PolymerizeByLinq
            │   │       │   ├── bin
            │   │       │   ├── obj
            │   │       │   ├── PolymerizeByLinq.csproj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       └── AssemblyInfo.cs
            │   │       ├── PolymerizeByLinq.sln
            │   │       └── PolymerizeByLinq.suo
            │   ├── 11
            │   │   └── OperateCollectionByLinq
            │   │       ├── OperateCollectionByLinq
            │   │       │   ├── bin
            │   │       │   ├── obj
            │   │       │   ├── OperateCollectionByLinq.csproj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       └── AssemblyInfo.cs
            │   │       ├── OperateCollectionByLinq.sln
            │   │       └── OperateCollectionByLinq.suo
            │   ├── 12
            │   │   └── OperateElementByLinq
            │   │       ├── OperateElementByLinq
            │   │       │   ├── bin
            │   │       │   ├── obj
            │   │       │   ├── OperateElementByLinq.csproj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       └── AssemblyInfo.cs
            │   │       ├── OperateElementByLinq.sln
            │   │       └── OperateElementByLinq.suo
            │   ├── 13
            │   │   └── JoinByLinq
            │   │       ├── JoinByLinq
            │   │       │   ├── bin
            │   │       │   ├── JoinByLinq.csproj
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       └── AssemblyInfo.cs
            │   │       ├── JoinByLinq.sln
            │   │       └── JoinByLinq.suo
            │   ├── 14
            │   │   └── QueryTableByLinq
            │   │       ├── QueryTableByLinq
            │   │       │   ├── bin
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   └── AssemblyInfo.cs
            │   │       │   └── QueryTableByLinq.csproj
            │   │       ├── QueryTableByLinq.sln
            │   │       └── QueryTableByLinq.suo
            │   ├── 15
            │   │   └── QueryTablesByLinq
            │   │       ├── QueryTablesByLinq
            │   │       │   ├── bin
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   └── AssemblyInfo.cs
            │   │       │   └── QueryTablesByLinq.csproj
            │   │       ├── QueryTablesByLinq.sln
            │   │       └── QueryTablesByLinq.suo
            │   ├── 16
            │   │   └── ProjectionByLinq
            │   │       ├── ProjectionByLinq
            │   │       │   ├── bin
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── ProjectionByLinq.csproj
            │   │       │   └── Properties
            │   │       │       └── AssemblyInfo.cs
            │   │       ├── ProjectionByLinq.sln
            │   │       └── ProjectionByLinq.suo
            │   ├── 17
            │   │   └── FilterByLinq
            │   │       ├── FilterByLinq
            │   │       │   ├── bin
            │   │       │   ├── FilterByLinq.csproj
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       └── AssemblyInfo.cs
            │   │       ├── FilterByLinq.sln
            │   │       └── FilterByLinq.suo
            │   ├── 18
            │   │   └── SortByLinq
            │   │       ├── SortByLinq
            │   │       │   ├── bin
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   └── AssemblyInfo.cs
            │   │       │   └── SortByLinq.csproj
            │   │       ├── SortByLinq.sln
            │   │       └── SortByLinq.suo
            │   ├── 19
            │   │   └── PolymerizeByLinq
            │   │       ├── PolymerizeByLinq
            │   │       │   ├── bin
            │   │       │   ├── obj
            │   │       │   ├── PolymerizeByLinq.csproj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       └── AssemblyInfo.cs
            │   │       ├── PolymerizeByLinq.sln
            │   │       └── PolymerizeByLinq.suo
            │   ├── 20
            │   │   └── OperateElementByLinq
            │   │       ├── OperateElementByLinq
            │   │       │   ├── bin
            │   │       │   ├── obj
            │   │       │   ├── OperateElementByLinq.csproj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       └── AssemblyInfo.cs
            │   │       ├── OperateElementByLinq.sln
            │   │       └── OperateElementByLinq.suo
            │   ├── 21
            │   │   └── JoinByLinq
            │   │       ├── JoinByLinq
            │   │       │   ├── bin
            │   │       │   ├── JoinByLinq.csproj
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       └── AssemblyInfo.cs
            │   │       ├── JoinByLinq.sln
            │   │       └── JoinByLinq.suo
            │   ├── 22
            │   │   └── PartitioningByLinq
            │   │       ├── PartitioningByLinq
            │   │       │   ├── bin
            │   │       │   ├── obj
            │   │       │   ├── PartitioningByLinq.csproj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       └── AssemblyInfo.cs
            │   │       ├── PartitioningByLinq.sln
            │   │       └── PartitioningByLinq.suo
            │   └── database
            │       ├── db_10_Data.MDF
            │       └── db_10_Log.LDF
            ├── 11
            │   ├── 01
            │   │   └── SkilfulOperator1
            │   │       ├── SkilfulOperator1
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   ├── AssemblyInfo.cs
            │   │       │   │   ├── Resources.Designer.cs
            │   │       │   │   ├── Resources.resx
            │   │       │   │   ├── Settings.Designer.cs
            │   │       │   │   └── Settings.settings
            │   │       │   └── SkilfulOperator1.csproj
            │   │       ├── SkilfulOperator1.sln
            │   │       └── SkilfulOperator1.suo
            │   ├── 02
            │   │   └── SkilfulOperator2
            │   │       ├── SkilfulOperator2
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   ├── AssemblyInfo.cs
            │   │       │   │   ├── Resources.Designer.cs
            │   │       │   │   ├── Resources.resx
            │   │       │   │   ├── Settings.Designer.cs
            │   │       │   │   └── Settings.settings
            │   │       │   └── SkilfulOperator2.csproj
            │   │       ├── SkilfulOperator2.sln
            │   │       └── SkilfulOperator2.suo
            │   ├── 03
            │   │   └── UseParams
            │   │       ├── UseParams
            │   │       │   ├── bin
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   └── AssemblyInfo.cs
            │   │       │   └── UseParams.csproj
            │   │       ├── UseParams.sln
            │   │       └── UseParams.suo
            │   ├── 04
            │   │   └── UseInterface
            │   │       ├── UseInterface
            │   │       │   ├── bin
            │   │       │   ├── Class1.cs
            │   │       │   ├── obj
            │   │       │   ├── Properties
            │   │       │   │   └── AssemblyInfo.cs
            │   │       │   └── UseInterface.csproj
            │   │       ├── UseInterface.sln
            │   │       └── UseInterface.suo
            │   ├── 05
            │   │   └── UseProperty
            │   │       ├── UseProperty
            │   │       │   ├── bin
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   └── AssemblyInfo.cs
            │   │       │   └── UseProperty.csproj
            │   │       ├── UseProperty.sln
            │   │       └── UseProperty.suo
            │   ├── 06
            │   │   └── UseComparer
            │   │       ├── UseComparer
            │   │       │   ├── bin
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   └── AssemblyInfo.cs
            │   │       │   └── UseComparer.csproj
            │   │       ├── UseComparer.sln
            │   │       └── UseComparer.suo
            │   ├── 07
            │   │   └── ConstructorChain
            │   │       ├── ConstructorChain
            │   │       │   ├── bin
            │   │       │   ├── ConstructorChain.csproj
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       └── AssemblyInfo.cs
            │   │       ├── ConstructorChain.sln
            │   │       └── ConstructorChain.suo
            │   ├── 08
            │   │   └── InitStaticMember
            │   │       ├── InitStaticMember
            │   │       │   ├── bin
            │   │       │   ├── InitStaticMember.csproj
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       └── AssemblyInfo.cs
            │   │       ├── InitStaticMember.sln
            │   │       └── InitStaticMember.suo
            │   ├── 09
            │   │   └── OverrideToString
            │   │       ├── OverrideToString
            │   │       │   ├── bin
            │   │       │   ├── obj
            │   │       │   ├── OverrideToString.csproj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       └── AssemblyInfo.cs
            │   │       ├── OverRideToString.sln
            │   │       └── OverRideToString.suo
            │   ├── 10
            │   │   └── UseUsing
            │   │       ├── UseUsing
            │   │       │   ├── bin
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   └── AssemblyInfo.cs
            │   │       │   └── UseUsing.csproj
            │   │       ├── UseUsing.sln
            │   │       └── UseUsing.suo
            │   ├── 11
            │   │   └── UseForeach
            │   │       ├── UseForeach
            │   │       │   ├── bin
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   └── AssemblyInfo.cs
            │   │       │   └── UseForeach.csproj
            │   │       ├── UseForeach.sln
            │   │       └── UseForeach.suo
            │   ├── 12
            │   │   └── ExtendSealClass
            │   │       ├── ExtendSealClass
            │   │       │   ├── bin
            │   │       │   ├── ExtendSealClass.csproj
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       └── AssemblyInfo.cs
            │   │       ├── ExtendSealClass.sln
            │   │       └── ExtendSealClass.suo
            │   ├── 13
            │   │   └── ConvertArrayType
            │   │       ├── ConvertArrayType
            │   │       │   ├── bin
            │   │       │   ├── ConvertArrayType.csproj
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       └── AssemblyInfo.cs
            │   │       ├── ConvertArrayType.sln
            │   │       └── ConvertArrayType.suo
            │   ├── 14
            │   │   └── ReverseArray
            │   │       ├── ReverseArray
            │   │       │   ├── bin
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   └── AssemblyInfo.cs
            │   │       │   └── ReverseArray.csproj
            │   │       ├── ReverseArray.sln
            │   │       └── ReverseArray.suo
            │   ├── 15
            │   │   └── UseFindAll
            │   │       ├── UseFindAll
            │   │       │   ├── bin
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   └── AssemblyInfo.cs
            │   │       │   └── UseFindAll.csproj
            │   │       ├── UseFindAll.sln
            │   │       └── UseFindAll.suo
            │   ├── 16
            │   │   └── AlterLength
            │   │       ├── AlterLength
            │   │       │   ├── AlterLength.csproj
            │   │       │   ├── bin
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       └── AssemblyInfo.cs
            │   │       ├── AlterLength.sln
            │   │       └── AlterLength.suo
            │   ├── 17
            │   │   └── GetAssemblyVersion
            │   │       ├── GetAssemblyVersion
            │   │       │   ├── bin
            │   │       │   ├── GetAssemblyVersion.csproj
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       └── AssemblyInfo.cs
            │   │       ├── GetAssemblyVersion.sln
            │   │       └── GetAssemblyVersion.suo
            │   ├── 18
            │   │   └── AboutAppDomain
            │   │       ├── AboutAppDomain.sln
            │   │       ├── AboutAppDomain.suo
            │   │       ├── Test1
            │   │       │   ├── bin
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   └── AssemblyInfo.cs
            │   │       │   └── Test1.csproj
            │   │       └── Test2
            │   │           ├── bin
            │   │           ├── obj
            │   │           ├── Program.cs
            │   │           ├── Properties
            │   │           │   └── AssemblyInfo.cs
            │   │           └── Test2.csproj
            │   ├── 19
            │   │   └── UseReflect
            │   │       ├── UseReflect
            │   │       │   ├── bin
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   └── AssemblyInfo.cs
            │   │       │   └── UseReflect.csproj
            │   │       ├── UseReflect.sln
            │   │       └── UseReflect.suo
            │   ├── 20
            │   │   └── UseRandom
            │   │       ├── UseRandom
            │   │       │   ├── bin
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   └── AssemblyInfo.cs
            │   │       │   └── UseRandom.csproj
            │   │       ├── UseRandom.sln
            │   │       └── UseRandom.suo
            │   ├── 21
            │   │   └── Conversion
            │   │       ├── Conversion
            │   │       │   ├── bin
            │   │       │   ├── Conversion.csproj
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       └── AssemblyInfo.cs
            │   │       ├── Conversion.sln
            │   │       └── Conversion.suo
            │   ├── 22
            │   │   └── IniArrayByLinq
            │   │       ├── IniArrayByLinq
            │   │       │   ├── bin
            │   │       │   ├── IniArrayByLinq.csproj
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       └── AssemblyInfo.cs
            │   │       ├── IniArrayByLinq.sln
            │   │       └── IniArrayByLinq.suo
            │   ├── 23
            │   │   └── ForeachArray
            │   │       ├── ForeachArray
            │   │       │   ├── bin
            │   │       │   ├── ForeachArray.csproj
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       └── AssemblyInfo.cs
            │   │       ├── ForeachArray.sln
            │   │       └── ForeachArray.suo
            │   ├── 24
            │   │   └── RandomSeqByLinq
            │   │       ├── RandomSeqByLinq
            │   │       │   ├── bin
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   └── AssemblyInfo.cs
            │   │       │   └── RandomSeqByLinq.csproj
            │   │       ├── RandomSeqByLinq.sln
            │   │       └── RandomSeqByLinq.suo
            │   └── 25
            │       └── CreateStringByLinq
            │           ├── CreateStringByLinq
            │           │   ├── bin
            │           │   ├── CreateStringByLinq.csproj
            │           │   ├── obj
            │           │   ├── Program.cs
            │           │   └── Properties
            │           │       └── AssemblyInfo.cs
            │           ├── CreateStringByLinq.sln
            │           └── CreateStringByLinq.suo
            ├── 12
            │   ├── 01
            │   │   └── StatusBar
            │   │       ├── StatusBar
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── images
            │   │       │   │   ├── find.ico
            │   │       │   │   ├── print.ico
            │   │       │   │   ├── save.ico
            │   │       │   │   ├── 复制.ico
            │   │       │   │   ├── 新建.ico
            │   │       │   │   └── 粘贴.ico
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   ├── AssemblyInfo.cs
            │   │       │   │   ├── Resources.Designer.cs
            │   │       │   │   ├── Resources.resx
            │   │       │   │   ├── Settings.Designer.cs
            │   │       │   │   └── Settings.settings
            │   │       │   └── StatusBar.csproj
            │   │       ├── StatusBar.sln
            │   │       └── StatusBar.suo
            │   ├── 02
            │   │   └── SetSysTime
            │   │       ├── SetSysTime
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   ├── AssemblyInfo.cs
            │   │       │   │   ├── Resources.Designer.cs
            │   │       │   │   ├── Resources.resx
            │   │       │   │   ├── Settings.Designer.cs
            │   │       │   │   └── Settings.settings
            │   │       │   └── SetSysTime.csproj
            │   │       ├── SetSysTime.sln
            │   │       └── SetSysTime.suo
            │   ├── 03
            │   │   └── SetWindowFront
            │   │       ├── SetWindowFront
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   ├── AssemblyInfo.cs
            │   │       │   │   ├── Resources.Designer.cs
            │   │       │   │   ├── Resources.resx
            │   │       │   │   ├── Settings.Designer.cs
            │   │       │   │   └── Settings.settings
            │   │       │   └── SetWindowFront.csproj
            │   │       ├── SetWindowFront.sln
            │   │       └── SetWindowFront.suo
            │   ├── 04
            │   │   └── SuggestiveDialog
            │   │       ├── SuggestiveDialog
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   ├── AssemblyInfo.cs
            │   │       │   │   ├── Resources.Designer.cs
            │   │       │   │   ├── Resources.resx
            │   │       │   │   ├── Settings.Designer.cs
            │   │       │   │   └── Settings.settings
            │   │       │   └── SuggestiveDialog.csproj
            │   │       ├── SuggestiveDialog.sln
            │   │       └── SuggestiveDialog.suo
            │   ├── 05
            │   │   └── AppIco
            │   │       ├── AppIco
            │   │       │   ├── AppIco.csproj
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── images
            │   │       │   │   └── Application.ico
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── AppIco.sln
            │   │       └── AppIco.suo
            │   ├── 06
            │   │   └── TransluWin
            │   │       ├── TransluWin
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── images
            │   │       │   │   └── 背景图片.bmp
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   ├── AssemblyInfo.cs
            │   │       │   │   ├── Resources.Designer.cs
            │   │       │   │   ├── Resources.resx
            │   │       │   │   ├── Settings.Designer.cs
            │   │       │   │   └── Settings.settings
            │   │       │   └── TransluWin.csproj
            │   │       ├── TransluWin.sln
            │   │       └── TransluWin.suo
            │   ├── 07
            │   │   └── HisMenu
            │   │       ├── HisMenu
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── HisMenu.csproj
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── HisMenu.sln
            │   │       └── HisMenu.suo
            │   ├── 08
            │   │   └── SetFocus
            │   │       ├── SetFocus
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   ├── AssemblyInfo.cs
            │   │       │   │   ├── Resources.Designer.cs
            │   │       │   │   ├── Resources.resx
            │   │       │   │   ├── Settings.Designer.cs
            │   │       │   │   └── Settings.settings
            │   │       │   └── SetFocus.csproj
            │   │       ├── SetFocus.sln
            │   │       └── SetFocus.suo
            │   ├── 09
            │   │   └── FindListBoxItem
            │   │       ├── FindListBoxItem
            │   │       │   ├── bin
            │   │       │   ├── FindListBoxItem.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── FindListBoxItem.sln
            │   │       └── FindListBoxItem.suo
            │   ├── 10
            │   │   └── ListViewIcon
            │   │       ├── ListViewIcon
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── images
            │   │       │   │   ├── 1.gif
            │   │       │   │   ├── 2.gif
            │   │       │   │   ├── 3.gif
            │   │       │   │   └── 4.gif
            │   │       │   ├── ListViewIcon.csproj
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── ListViewIcon.sln
            │   │       └── ListViewIcon.suo
            │   ├── 11
            │   │   └── DifferManner
            │   │       ├── DifferManner
            │   │       │   ├── bin
            │   │       │   ├── DifferManner.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── DifferManner.sln
            │   │       └── DifferManner.suo
            │   ├── 12
            │   │   └── ShowCatalog
            │   │       ├── ShowCatalog
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   ├── AssemblyInfo.cs
            │   │       │   │   ├── Resources.Designer.cs
            │   │       │   │   ├── Resources.resx
            │   │       │   │   ├── Settings.Designer.cs
            │   │       │   │   └── Settings.settings
            │   │       │   └── ShowCatalog.csproj
            │   │       ├── ShowCatalog.sln
            │   │       └── ShowCatalog.suo
            │   ├── 13
            │   │   └── ComboBoxBindList
            │   │       ├── ComboBoxBindList
            │   │       │   ├── bin
            │   │       │   ├── ComboBoxBindList.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── ComboBoxBindList.sln
            │   │       └── ComboBoxBindList.suo
            │   ├── 14
            │   │   └── UseProgressBar
            │   │       ├── UseProgressBar
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   ├── AssemblyInfo.cs
            │   │       │   │   ├── Resources.Designer.cs
            │   │       │   │   ├── Resources.resx
            │   │       │   │   ├── Settings.Designer.cs
            │   │       │   │   └── Settings.settings
            │   │       │   └── UseProgressBar.csproj
            │   │       ├── UseProgressBar.sln
            │   │       └── UseProgressBar.suo
            │   ├── 15
            │   │   └── UseToolTip
            │   │       ├── UseToolTip
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── images
            │   │       │   │   ├── 登录.gif
            │   │       │   │   ├── 登录界面.bmp
            │   │       │   │   ├── 退出.gif
            │   │       │   │   └── 重置.gif
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   ├── AssemblyInfo.cs
            │   │       │   │   ├── Resources.Designer.cs
            │   │       │   │   ├── Resources.resx
            │   │       │   │   ├── Settings.Designer.cs
            │   │       │   │   └── Settings.settings
            │   │       │   └── UseToolTip.csproj
            │   │       ├── UseToolTip.sln
            │   │       └── UseToolTip.suo
            │   ├── 16
            │   │   └── SetCheckListBox
            │   │       ├── SetCheckListBox
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   ├── AssemblyInfo.cs
            │   │       │   │   ├── Resources.Designer.cs
            │   │       │   │   ├── Resources.resx
            │   │       │   │   ├── Settings.Designer.cs
            │   │       │   │   └── Settings.settings
            │   │       │   └── SetCheckListBox.csproj
            │   │       ├── SetCheckListBox.sln
            │   │       └── SetCheckListBox.suo
            │   ├── 17
            │   │   └── UseMaskedTextBox
            │   │       ├── UseMaskedTextBox
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   ├── AssemblyInfo.cs
            │   │       │   │   ├── Resources.Designer.cs
            │   │       │   │   ├── Resources.resx
            │   │       │   │   ├── Settings.Designer.cs
            │   │       │   │   └── Settings.settings
            │   │       │   └── UseMaskedTextBox.csproj
            │   │       ├── UseMaskedTextBox.sln
            │   │       └── UseMaskedTextBox.suo
            │   ├── 18
            │   │   └── OpenMultiWindows
            │   │       ├── OpenMultiWindows
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── Form2.cs
            │   │       │   ├── Form2.Designer.cs
            │   │       │   ├── Form2.resx
            │   │       │   ├── FormTest.cs
            │   │       │   ├── FormTest.Designer.cs
            │   │       │   ├── FormTest.resx
            │   │       │   ├── obj
            │   │       │   ├── OpenMultiWindows.csproj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── OpenMultiWindows.sln
            │   │       └── OpenMultiWindows.suo
            │   ├── 19
            │   │   └── SendData
            │   │       ├── SendData
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── Form2.cs
            │   │       │   ├── Form2.Designer.cs
            │   │       │   ├── Form2.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   ├── AssemblyInfo.cs
            │   │       │   │   ├── Resources.Designer.cs
            │   │       │   │   ├── Resources.resx
            │   │       │   │   ├── Settings.Designer.cs
            │   │       │   │   └── Settings.settings
            │   │       │   └── SendData.csproj
            │   │       ├── SendData.sln
            │   │       └── SendData.suo
            │   ├── 20
            │   │   └── ControlInputLanguage
            │   │       ├── ControlInputLanguage
            │   │       │   ├── bin
            │   │       │   ├── ControlInputLanguage.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── ControlInputLanguage.sln
            │   │       └── ControlInputLanguage.suo
            │   ├── 21
            │   │   └── GetRowAndColumn
            │   │       ├── GetRowAndColumn
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── GetRowAndColumn.csproj
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── GetRowAndColumn.sln
            │   │       └── GetRowAndColumn.suo
            │   ├── 22
            │   │   └── SysInfo
            │   │       ├── SysInfo
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   ├── AssemblyInfo.cs
            │   │       │   │   ├── Resources.Designer.cs
            │   │       │   │   ├── Resources.resx
            │   │       │   │   ├── Settings.Designer.cs
            │   │       │   │   └── Settings.settings
            │   │       │   └── SysInfo.csproj
            │   │       ├── SysInfo.sln
            │   │       └── SysInfo.suo
            │   ├── 23
            │   │   └── SimulateOperate
            │   │       ├── SimulateOperate
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   ├── AssemblyInfo.cs
            │   │       │   │   ├── Resources.Designer.cs
            │   │       │   │   ├── Resources.resx
            │   │       │   │   ├── Settings.Designer.cs
            │   │       │   │   └── Settings.settings
            │   │       │   └── SimulateOperate.csproj
            │   │       ├── SimulateOperate.sln
            │   │       └── SimulateOperate.suo
            │   ├── 24
            │   │   └── SimulateOperateMouse
            │   │       ├── SimulateOperateMouse
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   ├── AssemblyInfo.cs
            │   │       │   │   ├── Resources.Designer.cs
            │   │       │   │   ├── Resources.resx
            │   │       │   │   ├── Settings.Designer.cs
            │   │       │   │   └── Settings.settings
            │   │       │   └── SimulateOperateMouse.csproj
            │   │       ├── SimulateOperateMouse.sln
            │   │       └── SimulateOperateMouse.suo
            │   ├── 25
            │   │   └── GetNumber
            │   │       ├── GetNumber
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── GetNumber.csproj
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── GetNumber.sln
            │   │       └── GetNumber.suo
            │   ├── 26
            │   │   └── ControlTextBoxInput
            │   │       ├── ControlTextBoxInput
            │   │       │   ├── bin
            │   │       │   ├── ControlTextBoxInput.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── ControlTextBoxInput.sln
            │   │       └── ControlTextBoxInput.suo
            │   ├── 27
            │   │   └── SetControlState
            │   │       ├── SetControlState
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   ├── AssemblyInfo.cs
            │   │       │   │   ├── Resources.Designer.cs
            │   │       │   │   ├── Resources.resx
            │   │       │   │   ├── Settings.Designer.cs
            │   │       │   │   └── Settings.settings
            │   │       │   └── SetControlState.csproj
            │   │       ├── SetControlState.sln
            │   │       └── SetControlState.suo
            │   ├── 28
            │   │   └── OpenCDROM
            │   │       ├── OpenCDROM
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── OpenCDROM.csproj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── OpenCDROM.sln
            │   │       └── OpenCDROM.suo
            │   ├── 29
            │   │   └── CSharpOperateWord
            │   │       ├── CSharpOperateWord
            │   │       │   ├── bin
            │   │       │   ├── CSharpOperateWord.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── CSharpOperateWord.sln
            │   │       └── CSharpOperateWord.suo
            │   ├── 30
            │   │   └── CSharpOperateExcel
            │   │       ├── CSharpOperateExcel
            │   │       │   ├── bin
            │   │       │   ├── CSharpOperateExcel.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── CSharpOperateExcel.sln
            │   │       └── CSharpOperateExcel.suo
            │   ├── 31
            │   │   └── RunSingleInstance
            │   │       ├── RunSingleInstance
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── images
            │   │       │   │   ├── find.ico
            │   │       │   │   ├── icon18.ico
            │   │       │   │   ├── icon20.ico
            │   │       │   │   └── icon21.ico
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   ├── AssemblyInfo.cs
            │   │       │   │   ├── Resources.Designer.cs
            │   │       │   │   ├── Resources.resx
            │   │       │   │   ├── Settings.Designer.cs
            │   │       │   │   └── Settings.settings
            │   │       │   └── RunSingleInstance.csproj
            │   │       ├── RunSingleInstance.sln
            │   │       └── RunSingleInstance.suo
            │   ├── 32
            │   │   └── BackBroundRun
            │   │       ├── BackBroundRun
            │   │       │   ├── BackBroundRun.csproj
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── BackBroundRun.sln
            │   │       ├── BackBroundRun.suo
            │   │       └── ConsoleApplication
            │   │           ├── bin
            │   │           ├── ConsoleApplication.csproj
            │   │           ├── obj
            │   │           ├── Program.cs
            │   │           └── Properties
            │   │               └── AssemblyInfo.cs
            │   ├── 33
            │   │   └── CustomTextBox
            │   │       ├── CustomTextBox
            │   │       │   ├── bin
            │   │       │   ├── CTextBox.cs
            │   │       │   ├── CTextBox.Designer.cs
            │   │       │   ├── CTextBox.resx
            │   │       │   ├── CustomTextBox.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── CustomTextBox.sln
            │   │       └── CustomTextBox.suo
            │   ├── 34
            │   │   └── OperateRegistry
            │   │       ├── OperateRegistry
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── OperateRegistry.csproj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── OperateRegistry.sln
            │   │       └── OperateRegistry.suo
            │   ├── 35
            │   │   └── OpenSingleChildWindow
            │   │       ├── OpenSingleChildWindow
            │   │       │   ├── bin
            │   │       │   ├── FormChild.cs
            │   │       │   ├── FormChild.Designer.cs
            │   │       │   ├── FormChild.resx
            │   │       │   ├── FormMDI.cs
            │   │       │   ├── FormMDI.Designer.cs
            │   │       │   ├── FormMDI.resx
            │   │       │   ├── images
            │   │       │   │   ├── exit.ico
            │   │       │   │   ├── find.ico
            │   │       │   │   ├── icon18.ico
            │   │       │   │   ├── icon20.ico
            │   │       │   │   └── icon21.ico
            │   │       │   ├── obj
            │   │       │   ├── OpenSingleChildWindow.csproj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── OpenSingleChildWindow.sln
            │   │       └── OpenSingleChildWindow.suo
            │   ├── 36
            │   │   └── ListBoxToListBox
            │   │       ├── ListBoxToListBox
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── ListBoxToListBox.csproj
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── ListBoxToListBox.sln
            │   │       └── ListBoxToListBox.suo
            │   ├── 37
            │   │   └── TextBoxEnterKey
            │   │       ├── TextBoxEnterKey
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   ├── AssemblyInfo.cs
            │   │       │   │   ├── Resources.Designer.cs
            │   │       │   │   ├── Resources.resx
            │   │       │   │   ├── Settings.Designer.cs
            │   │       │   │   └── Settings.settings
            │   │       │   └── TextBoxEnterKey.csproj
            │   │       ├── TextBoxEnterKey.sln
            │   │       └── TextBoxEnterKey.suo
            │   ├── 38
            │   │   └── RichTextBoxSaveFile
            │   │       ├── RichTextBoxSaveFile
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   ├── AssemblyInfo.cs
            │   │       │   │   ├── Resources.Designer.cs
            │   │       │   │   ├── Resources.resx
            │   │       │   │   ├── Settings.Designer.cs
            │   │       │   │   └── Settings.settings
            │   │       │   └── RichTextBoxSaveFile.csproj
            │   │       ├── RichTextBoxSaveFile.sln
            │   │       └── RichTextBoxSaveFile.suo
            │   ├── 39
            │   │   └── CSharpImportExcel
            │   │       ├── CSharpImportExcel
            │   │       │   ├── bin
            │   │       │   ├── CSharpImportExcel.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── CSharpImportExcel.sln
            │   │       └── CSharpImportExcel.suo
            │   ├── 40
            │   │   └── ShieldCtrlV
            │   │       ├── ShieldCtrlV
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   ├── AssemblyInfo.cs
            │   │       │   │   ├── Resources.Designer.cs
            │   │       │   │   ├── Resources.resx
            │   │       │   │   ├── Settings.Designer.cs
            │   │       │   │   └── Settings.settings
            │   │       │   └── ShieldCtrlV.csproj
            │   │       ├── ShieldCtrlV.sln
            │   │       └── ShieldCtrlV.suo
            │   ├── 41
            │   │   └── ComboBoxShowImage
            │   │       ├── ComboBoxShowImage
            │   │       │   ├── bin
            │   │       │   ├── ComboBoxShowImage.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── images
            │   │       │   │   ├── 1.gif
            │   │       │   │   ├── 2.gif
            │   │       │   │   ├── 3.gif
            │   │       │   │   └── 4.gif
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── ComboBoxShowImage.sln
            │   │       └── ComboBoxShowImage.suo
            │   ├── 42
            │   │   └── ComboBoxAutoQuery
            │   │       ├── ComboBoxAutoQuery
            │   │       │   ├── bin
            │   │       │   ├── ComboBoxAutoQuery.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── ComboBoxAutoQuery.sln
            │   │       └── ComboBoxAutoQuery.suo
            │   ├── 43
            │   │   └── SimulateCutByClipboard
            │   │       ├── SimulateCutByClipboard
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   ├── AssemblyInfo.cs
            │   │       │   │   ├── Resources.Designer.cs
            │   │       │   │   ├── Resources.resx
            │   │       │   │   ├── Settings.Designer.cs
            │   │       │   │   └── Settings.settings
            │   │       │   └── SimulateCutByClipboard.csproj
            │   │       ├── SimulateCutByClipboard.sln
            │   │       └── SimulateCutByClipboard.suo
            │   ├── 44
            │   │   └── StopLeftKey
            │   │       ├── StopLeftKey
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   ├── AssemblyInfo.cs
            │   │       │   │   ├── Resources.Designer.cs
            │   │       │   │   ├── Resources.resx
            │   │       │   │   ├── Settings.Designer.cs
            │   │       │   │   └── Settings.settings
            │   │       │   └── StopLeftKey.csproj
            │   │       ├── StopLeftKey.sln
            │   │       └── StopLeftKey.suo
            │   ├── 45
            │   │   └── HideMouse
            │   │       ├── HideMouse
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── HideMouse.csproj
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── HideMouse.sln
            │   │       └── HideMouse.suo
            │   └── database
            │       ├── db_12_Data.MDF
            │       └── db_12_Log.LDF
            ├── 13
            │   ├── 01
            │   │   └── ThreadBindFunction
            │   │       ├── ThreadBindFunction
            │   │       │   ├── bin
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   └── AssemblyInfo.cs
            │   │       │   └── ThreadBindFunction.csproj
            │   │       ├── ThreadBindFunction.sln
            │   │       └── ThreadBindFunction.suo
            │   ├── 02
            │   │   └── GetAllProcess
            │   │       ├── GetAllProcess
            │   │       │   ├── bin
            │   │       │   ├── GetAllProcess.csproj
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       └── AssemblyInfo.cs
            │   │       ├── GetAllProcess.sln
            │   │       └── GetAllProcess.suo
            │   ├── 03
            │   │   └── CurrentProcessHash
            │   │       ├── CurrentProcessHash
            │   │       │   ├── bin
            │   │       │   ├── CurrentProcessHash.csproj
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       └── AssemblyInfo.cs
            │   │       ├── CurrentProcessHash.sln
            │   │       └── CurrentProcessHash.suo
            │   ├── 04
            │   │   └── GetServerInfoByIP
            │   │       ├── GetServerInfoByIP
            │   │       │   ├── bin
            │   │       │   ├── GetServerInfoByIP.csproj
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       └── AssemblyInfo.cs
            │   │       ├── GetServerInfoByIP.sln
            │   │       └── GetServerInfoByIP.suo
            │   ├── 05
            │   │   └── PingIP
            │   │       ├── PingIP
            │   │       │   ├── bin
            │   │       │   ├── obj
            │   │       │   ├── PingIP.csproj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       └── AssemblyInfo.cs
            │   │       ├── PingIP.sln
            │   │       └── PingIP.suo
            │   ├── 06
            │   │   └── ScanPort
            │   │       ├── ScanPort
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   ├── AssemblyInfo.cs
            │   │       │   │   ├── Resources.Designer.cs
            │   │       │   │   ├── Resources.resx
            │   │       │   │   ├── Settings.Designer.cs
            │   │       │   │   └── Settings.settings
            │   │       │   └── ScanPort.csproj
            │   │       ├── ScanPort.sln
            │   │       └── ScanPort.suo
            │   ├── 07
            │   │   └── CreateTCPServer
            │   │       ├── CreateTCPServer
            │   │       │   ├── bin
            │   │       │   ├── CreateTCPServer.csproj
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       └── AssemblyInfo.cs
            │   │       ├── CreateTCPServer.sln
            │   │       └── CreateTCPServer.suo
            │   ├── 08
            │   │   └── CreateTCPClient
            │   │       ├── CreateTCPClient
            │   │       │   ├── bin
            │   │       │   ├── CreateTCPClient.csproj
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       └── AssemblyInfo.cs
            │   │       ├── CreateTCPClient.sln
            │   │       ├── CreateTCPClient.suo
            │   │       └── 程序使用说明.txt
            │   ├── 09
            │   │   └── SetInternet
            │   │       ├── SetInternet
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   │   └── SetInternet.csproj.FileList.txt
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   ├── AssemblyInfo.cs
            │   │       │   │   ├── Resources.Designer.cs
            │   │       │   │   ├── Resources.resx
            │   │       │   │   ├── Settings.Designer.cs
            │   │       │   │   └── Settings.settings
            │   │       │   └── SetInternet.csproj
            │   │       ├── SetInternet.sln
            │   │       └── SetInternet.suo
            │   └── 10
            │       └── GetAllHtmlLink
            │           ├── GetAllHtmlLink
            │           │   ├── bin
            │           │   ├── Form1.cs
            │           │   ├── Form1.Designer.cs
            │           │   ├── Form1.resx
            │           │   ├── GetAllHtmlLink.csproj
            │           │   ├── obj
            │           │   │   └── GetAllHtmlLink.csproj.FileList.txt
            │           │   ├── Program.cs
            │           │   └── Properties
            │           │       ├── AssemblyInfo.cs
            │           │       ├── Resources.Designer.cs
            │           │       ├── Resources.resx
            │           │       ├── Settings.Designer.cs
            │           │       └── Settings.settings
            │           ├── GetAllHtmlLink.sln
            │           └── GetAllHtmlLink.suo
            ├── 14
            │   ├── 01
            │   │   └── ComboxBindData
            │   │       ├── ComboxBindData
            │   │       │   ├── bin
            │   │       │   ├── ComboxBindData.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── ComboxBindData.sln
            │   │       └── ComboxBindData.suo
            │   ├── 02
            │   │   └── CheckedListBoxBindData
            │   │       ├── CheckedListBoxBindData
            │   │       │   ├── bin
            │   │       │   ├── CheckedListBoxBindData.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── CheckedListBoxBindData.sln
            │   │       └── CheckedListBoxBindData.suo
            │   ├── 03
            │   │   └── ListBoxBindData
            │   │       ├── ListBoxBindData
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── ListBoxBindData.csproj
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── ListBoxBindData.sln
            │   │       └── ListBoxBindData.suo
            │   ├── 04
            │   │   └── TreeViewBindData
            │   │       ├── TreeViewBindData
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── images
            │   │       │   │   ├── 关闭.ico
            │   │       │   │   └── 打开.ico
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   ├── AssemblyInfo.cs
            │   │       │   │   ├── Resources.Designer.cs
            │   │       │   │   ├── Resources.resx
            │   │       │   │   ├── Settings.Designer.cs
            │   │       │   │   └── Settings.settings
            │   │       │   └── TreeViewBindData.csproj
            │   │       ├── TreeViewBindData.sln
            │   │       └── TreeViewBindData.suo
            │   ├── 05
            │   │   └── DataGridViewComboBoxBindData
            │   │       ├── DataGridViewComboBoxBindData
            │   │       │   ├── bin
            │   │       │   ├── DataGridViewComboBoxBindData.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── DataGridViewComboBoxBindData.sln
            │   │       └── DataGridViewComboBoxBindData.suo
            │   ├── 06
            │   │   └── DataGridViewCommit
            │   │       ├── DataGridViewCommit
            │   │       │   ├── bin
            │   │       │   ├── DataGridViewCommit.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── DataGridViewCommit.sln
            │   │       └── DataGridViewCommit.suo
            │   ├── 07
            │   │   └── CustomDataGridViewColumn
            │   │       ├── CustomDataGridViewColumn
            │   │       │   ├── bin
            │   │       │   ├── CustomDataGridViewColumn.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── CustomDataGridViewColumn.sln
            │   │       └── CustomDataGridViewColumn.suo
            │   ├── 08
            │   │   └── DataGridViewClear
            │   │       ├── DataGridViewClear
            │   │       │   ├── bin
            │   │       │   ├── DataGridViewClear.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── DataGridViewClear.sln
            │   │       └── DataGridViewClear.suo
            │   ├── 09
            │   │   └── UnionColumns
            │   │       ├── UnionColumns
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   ├── AssemblyInfo.cs
            │   │       │   │   ├── Resources.Designer.cs
            │   │       │   │   ├── Resources.resx
            │   │       │   │   ├── Settings.Designer.cs
            │   │       │   │   └── Settings.settings
            │   │       │   └── UnionColumns.csproj
            │   │       ├── UnionColumns.sln
            │   │       └── UnionColumns.suo
            │   ├── 10
            │   │   └── UseTransCommitData
            │   │       ├── UseTransCommitData
            │   │       │   ├── bin
            │   │       │   ├── DataOperate.cs
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   └── AssemblyInfo.cs
            │   │       │   └── UseTransCommitData.csproj
            │   │       ├── UseTransCommitData.sln
            │   │       └── UseTransCommitData.suo
            │   ├── 11
            │   │   └── HideTransaction
            │   │       ├── HideTransaction
            │   │       │   ├── bin
            │   │       │   ├── HideTransaction.csproj
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       └── AssemblyInfo.cs
            │   │       ├── HideTransaction.sln
            │   │       └── HideTransaction.suo
            │   ├── 12
            │   │   └── BulkCopy
            │   │       ├── BulkCopy
            │   │       │   ├── bin
            │   │       │   ├── BulkCopy.csproj
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       └── AssemblyInfo.cs
            │   │       ├── BulkCopy.sln
            │   │       └── BulkCopy.suo
            │   ├── 13
            │   │   └── ImageSaveToDb
            │   │       ├── ImageSaveToDb
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── images
            │   │       │   │   └── test.jpg
            │   │       │   ├── ImageSaveToDb.csproj
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── ImageSaveToDb.sln
            │   │       └── ImageSaveToDb.suo
            │   ├── 14
            │   │   └── ImageFromDb
            │   │       ├── ImageFromDb
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── ImageFromDb.csproj
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── ImageFromDb.sln
            │   │       └── ImageFromDb.suo
            │   ├── 15
            │   │   └── DataBaseDate
            │   │       ├── DataBaseDate
            │   │       │   ├── bin
            │   │       │   ├── DataBaseDate.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── DataBaseDate.sln
            │   │       └── DataBaseDate.suo
            │   ├── 16
            │   │   └── PrimaryByDataTable
            │   │       ├── PrimaryByDataTable
            │   │       │   ├── bin
            │   │       │   ├── obj
            │   │       │   ├── PrimaryByDataTable.csproj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       └── AssemblyInfo.cs
            │   │       ├── PrimaryByDataTable.sln
            │   │       └── PrimaryByDataTable.suo
            │   ├── 17
            │   │   └── QueryMultiSqls
            │   │       ├── QueryMultiSqls
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   ├── AssemblyInfo.cs
            │   │       │   │   ├── Resources.Designer.cs
            │   │       │   │   ├── Resources.resx
            │   │       │   │   ├── Settings.Designer.cs
            │   │       │   │   └── Settings.settings
            │   │       │   └── QueryMultiSqls.csproj
            │   │       ├── QueryMultiSqls.sln
            │   │       └── QueryMultiSqls.suo
            │   ├── 18
            │   │   └── AnyFileSaveToDb
            │   │       ├── AnyFileSaveToDb
            │   │       │   ├── AnyFileSaveToDb.csproj
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── AnyFileSaveToDb.sln
            │   │       └── AnyFileSaveToDb.suo
            │   ├── 19
            │   │   └── ImageSaveToXml
            │   │       ├── ConsoleApplication1
            │   │       │   ├── bin
            │   │       │   ├── ConsoleApplication1.csproj
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       └── AssemblyInfo.cs
            │   │       ├── ImageSaveToXml
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── ImageSaveToXml.csproj
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── ImageSaveToXml.sln
            │   │       └── ImageSaveToXml.suo
            │   ├── 20
            │   │   └── RowChangeColumn
            │   │       ├── RowChangeColumn
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   ├── AssemblyInfo.cs
            │   │       │   │   ├── Resources.Designer.cs
            │   │       │   │   ├── Resources.resx
            │   │       │   │   ├── Settings.Designer.cs
            │   │       │   │   └── Settings.settings
            │   │       │   ├── RowChangeColumn.csproj
            │   │       │   └── Sql
            │   │       │       └── RowChangeColumn.sql
            │   │       ├── RowChangeColumn.sln
            │   │       └── RowChangeColumn.suo
            │   └── database
            │       ├── db_14_Data.MDF
            │       └── db_14_Log.LDF
            ├── 15
            │   ├── 01
            │   │   └── NumConverDate
            │   │       ├── NumConverDate
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── NumConverDate.csproj
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── NumConverDate.sln
            │   │       └── NumConverDate.suo
            │   ├── 02
            │   │   └── UseToString
            │   │       ├── UseToString
            │   │       │   ├── bin
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   └── AssemblyInfo.cs
            │   │       │   └── UseToString.csproj
            │   │       ├── UseToString.sln
            │   │       └── UseToString.suo
            │   ├── 03
            │   │   └── UseParseExact
            │   │       ├── UseParseExact
            │   │       │   ├── bin
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   └── AssemblyInfo.cs
            │   │       │   └── UseParseExact.csproj
            │   │       ├── UseParseExact.sln
            │   │       └── UseParseExact.suo
            │   ├── 04
            │   │   └── LowerToUpper
            │   │       ├── LowerToUpper
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── LowerToUpper.csproj
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── LowerToUpper.sln
            │   │       └── LowerToUpper.suo
            │   ├── 05
            │   │   └── MoneyFormat
            │   │       ├── MoneyFormat
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── MoneyFormat.csproj
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── MoneyFormat.sln
            │   │       └── MoneyFormat.suo
            │   ├── 06
            │   │   └── RowChangeColumn
            │   │       ├── RowChangeColumn
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   ├── AssemblyInfo.cs
            │   │       │   │   ├── Resources.Designer.cs
            │   │       │   │   ├── Resources.resx
            │   │       │   │   ├── Settings.Designer.cs
            │   │       │   │   └── Settings.settings
            │   │       │   └── RowChangeColumn.csproj
            │   │       ├── RowChangeColumn.sln
            │   │       └── RowChangeColumn.suo
            │   ├── 07
            │   │   └── StringSaveToArrayList
            │   │       ├── StringSaveToArrayList
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   ├── AssemblyInfo.cs
            │   │       │   │   ├── Resources.Designer.cs
            │   │       │   │   ├── Resources.resx
            │   │       │   │   ├── Settings.Designer.cs
            │   │       │   │   └── Settings.settings
            │   │       │   └── StringSaveToArrayList.csproj
            │   │       ├── StringSaveToArrayList.sln
            │   │       └── StringSaveToArrayList.suo
            │   ├── 08
            │   │   └── ReversalString
            │   │       ├── ReversalString
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   ├── AssemblyInfo.cs
            │   │       │   │   ├── Resources.Designer.cs
            │   │       │   │   ├── Resources.resx
            │   │       │   │   ├── Settings.Designer.cs
            │   │       │   │   └── Settings.settings
            │   │       │   └── ReversalString.csproj
            │   │       ├── ReversalString.sln
            │   │       └── ReversalString.suo
            │   ├── 09
            │   │   └── IsDate
            │   │       ├── IsDate
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── IsDate.csproj
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── IsDate.sln
            │   │       └── IsDate.suo
            │   ├── 10
            │   │   └── FilterNumFromString
            │   │       ├── FilterNumFromString
            │   │       │   ├── bin
            │   │       │   ├── FilterNumFromString.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── FilterNumFromString.sln
            │   │       └── FilterNumFromString.suo
            │   ├── 11
            │   │   └── ValiIndiInfo
            │   │       ├── ValiIndiInfo
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   ├── AssemblyInfo.cs
            │   │       │   │   ├── Resources.Designer.cs
            │   │       │   │   ├── Resources.resx
            │   │       │   │   ├── Settings.Designer.cs
            │   │       │   │   └── Settings.settings
            │   │       │   └── ValiIndiInfo.csproj
            │   │       ├── ValiIndiInfo.sln
            │   │       └── ValiIndiInfo.suo
            │   ├── 12
            │   │   └── ValiNumberOrLetter
            │   │       ├── ValiNumberOrLetter
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   ├── AssemblyInfo.cs
            │   │       │   │   ├── Resources.Designer.cs
            │   │       │   │   ├── Resources.resx
            │   │       │   │   ├── Settings.Designer.cs
            │   │       │   │   └── Settings.settings
            │   │       │   └── ValiNumberOrLetter.csproj
            │   │       ├── ValiNumberOrLetter.sln
            │   │       └── ValiNumberOrLetter.suo
            │   ├── 13
            │   │   └── ValiChinese
            │   │       ├── ValiChinese
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   ├── AssemblyInfo.cs
            │   │       │   │   ├── Resources.Designer.cs
            │   │       │   │   ├── Resources.resx
            │   │       │   │   ├── Settings.Designer.cs
            │   │       │   │   └── Settings.settings
            │   │       │   └── ValiChinese.csproj
            │   │       ├── ValiChinese.sln
            │   │       └── ValiChinese.suo
            │   ├── 14
            │   │   └── ValiUpperOrLower
            │   │       ├── ValiUpperOrLower
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   ├── AssemblyInfo.cs
            │   │       │   │   ├── Resources.Designer.cs
            │   │       │   │   ├── Resources.resx
            │   │       │   │   ├── Settings.Designer.cs
            │   │       │   │   └── Settings.settings
            │   │       │   └── ValiUpperOrLower.csproj
            │   │       ├── ValiUpperOrLower.sln
            │   │       └── ValiUpperOrLower.suo
            │   ├── 15
            │   │   └── ValiNumericalValue
            │   │       ├── ValiNumericalValue
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   ├── AssemblyInfo.cs
            │   │       │   │   ├── Resources.Designer.cs
            │   │       │   │   ├── Resources.resx
            │   │       │   │   ├── Settings.Designer.cs
            │   │       │   │   └── Settings.settings
            │   │       │   └── ValiNumericalValue.csproj
            │   │       ├── ValiNumericalValue.sln
            │   │       └── ValiNumericalValue.suo
            │   ├── 16
            │   │   └── CheckIterantString
            │   │       ├── CheckIterantString
            │   │       │   ├── bin
            │   │       │   ├── CheckIterantString.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── CheckIterantString.sln
            │   │       └── CheckIterantString.suo
            │   ├── 17
            │   │   └── AmendFileAttribute
            │   │       ├── AmendFileAttribute
            │   │       │   ├── AmendFileAttribute.csproj
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── AmendFileAttribute.sln
            │   │       └── AmendFileAttribute.suo
            │   ├── 18
            │   │   └── AmendFolderName
            │   │       ├── AmendFolderName
            │   │       │   ├── AmendFolderName.csproj
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── AmendFolderName.sln
            │   │       └── AmendFolderName.suo
            │   ├── 19
            │   │   └── ModifyFileName
            │   │       ├── ModifyFileName
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── ModifyFileName.csproj
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── ModifyFileName.sln
            │   │       └── ModifyFileName.suo
            │   ├── 20
            │   │   └── RansackFolder
            │   │       ├── RansackFolder
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   ├── AssemblyInfo.cs
            │   │       │   │   ├── Resources.Designer.cs
            │   │       │   │   ├── Resources.resx
            │   │       │   │   ├── Settings.Designer.cs
            │   │       │   │   └── Settings.settings
            │   │       │   └── RansackFolder.csproj
            │   │       ├── RansackFolder.sln
            │   │       └── RansackFolder.suo
            │   ├── 21
            │   │   └── SearchFiles
            │   │       ├── SearchFiles
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   ├── AssemblyInfo.cs
            │   │       │   │   ├── Resources.Designer.cs
            │   │       │   │   ├── Resources.resx
            │   │       │   │   ├── Settings.Designer.cs
            │   │       │   │   └── Settings.settings
            │   │       │   └── SearchFiles.csproj
            │   │       ├── SearchFiles.sln
            │   │       └── SearchFiles.suo
            │   ├── 22
            │   │   └── DeleteAllFiles
            │   │       ├── DeleteAllFiles
            │   │       │   ├── bin
            │   │       │   ├── DeleteAllFiles.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── DeleteAllFiles.sln
            │   │       └── DeleteAllFiles.suo
            │   ├── 23
            │   │   └── AbruptionString
            │   │       ├── AbruptionString
            │   │       │   ├── AbruptionString.csproj
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── AbruptionString.sln
            │   │       └── AbruptionString.suo
            │   ├── 24
            │   │   ├── WatchFile
            │   │   │   ├── bin
            │   │   │   │   └── Debug
            │   │   │   │       ├── WatchFile.exe
            │   │   │   │       ├── WatchFile.pdb
            │   │   │   │       ├── WatchFile.vshost.exe
            │   │   │   │       └── WatchFile.vshost.exe.manifest
            │   │   │   ├── Form1.cs
            │   │   │   ├── Form1.Designer.cs
            │   │   │   ├── Form1.resx
            │   │   │   ├── obj
            │   │   │   │   └── Debug
            │   │   │   │       ├── WatchFile.csproj.FileListAbsolute.txt
            │   │   │   │       ├── WatchFile.csproj.GenerateResource.Cache
            │   │   │   │       ├── WatchFile.exe
            │   │   │   │       ├── WatchFile.Form1.resources
            │   │   │   │       ├── WatchFile.pdb
            │   │   │   │       └── WatchFile.Properties.Resources.resources
            │   │   │   ├── Program.cs
            │   │   │   ├── Properties
            │   │   │   │   ├── AssemblyInfo.cs
            │   │   │   │   ├── Resources.Designer.cs
            │   │   │   │   ├── Resources.resx
            │   │   │   │   ├── Settings.Designer.cs
            │   │   │   │   └── Settings.settings
            │   │   │   └── WatchFile.csproj
            │   │   ├── WatchFile.sln
            │   │   └── WatchFile.suo
            │   ├── 25
            │   │   └── OperateIniFile
            │   │       ├── OperateIniFile
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── OperateIniFile.csproj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── OperateIniFile.sln
            │   │       └── OperateIniFile.suo
            │   ├── 26
            │   │   └── OperateMemoryStream
            │   │       ├── OperateMemoryStream
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── OperateMemoryStream.csproj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── OperateMemoryStream.sln
            │   │       └── OperateMemoryStream.suo
            │   ├── 27
            │   │   └── OperateBufferedStream
            │   │       ├── OperateBufferedStream
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── OperateBufferedStream.csproj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── OperateBufferedStream.sln
            │   │       └── OperateBufferedStream.suo
            │   ├── 28
            │   │   └── CreateTempFile
            │   │       ├── CreateTempFile
            │   │       │   ├── bin
            │   │       │   ├── CreateTempFile.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── CreateTempFile.sln
            │   │       └── CreateTempFile.suo
            │   ├── 29
            │   │   └── CompareFiles
            │   │       ├── CompareFiles
            │   │       │   ├── bin
            │   │       │   ├── CompareFiles.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── CompareFiles.sln
            │   │       └── CompareFiles.suo
            │   ├── 30
            │   │   └── ImageLeftToRight
            │   │       ├── ImageLeftToRight
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── ImageLeftToRight.csproj
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── ImageLeftToRight.sln
            │   │       └── ImageLeftToRight.suo
            │   ├── 31
            │   │   └── ImageUpToDown
            │   │       ├── ImageUpToDown
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── ImageUpToDown.csproj
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── ImageUpToDown.sln
            │   │       └── ImageUpToDown.suo
            │   ├── 32
            │   │   └── DrawCakyImage
            │   │       ├── DrawCakyImage
            │   │       │   ├── bin
            │   │       │   ├── DrawCakyImage.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── DrawCakyImage.sln
            │   │       └── DrawCakyImage.suo
            │   ├── 33
            │   │   └── ScalingImage
            │   │       ├── ScalingImage
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   ├── AssemblyInfo.cs
            │   │       │   │   ├── Resources.Designer.cs
            │   │       │   │   ├── Resources.resx
            │   │       │   │   ├── Settings.Designer.cs
            │   │       │   │   └── Settings.settings
            │   │       │   └── ScalingImage.csproj
            │   │       ├── ScalingImage.sln
            │   │       └── ScalingImage.suo
            │   ├── 34
            │   │   └── CutPicture
            │   │       ├── CutPicture
            │   │       │   ├── bin
            │   │       │   ├── CutPicture.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── CutPicture.sln
            │   │       └── CutPicture.suo
            │   ├── 35
            │   │   └── WriteLetters
            │   │       ├── WriteLetters
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   ├── AssemblyInfo.cs
            │   │       │   │   ├── Resources.Designer.cs
            │   │       │   │   ├── Resources.resx
            │   │       │   │   ├── Settings.Designer.cs
            │   │       │   │   └── Settings.settings
            │   │       │   └── WriteLetters.csproj
            │   │       ├── WriteLetters.sln
            │   │       └── WriteLetters.suo
            │   ├── 36
            │   │   └── Cartoon
            │   │       ├── Cartoon
            │   │       │   ├── bin
            │   │       │   ├── Cartoon.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── Cartoon.sln
            │   │       └── Cartoon.suo
            │   ├── 37
            │   │   └── ConvertImageKind
            │   │       ├── ConvertImageKind
            │   │       │   ├── bin
            │   │       │   ├── ConvertImageKind.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── ConvertImageKind.sln
            │   │       └── ConvertImageKind.suo
            │   ├── 38
            │   │   └── MouseDrawImage
            │   │       ├── MouseDrawImage
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── MouseDrawImage.csproj
            │   │       │   ├── obj
            │   │       │   ├── Program.cs
            │   │       │   └── Properties
            │   │       │       ├── AssemblyInfo.cs
            │   │       │       ├── Resources.Designer.cs
            │   │       │       ├── Resources.resx
            │   │       │       ├── Settings.Designer.cs
            │   │       │       └── Settings.settings
            │   │       ├── MouseDrawImage.sln
            │   │       └── MouseDrawImage.suo
            │   ├── 39
            │   │   └── SaveScreenImage
            │   │       ├── SaveScreenImage
            │   │       │   ├── bin
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── Program.cs
            │   │       │   ├── Properties
            │   │       │   │   ├── AssemblyInfo.cs
            │   │       │   │   ├── Resources.Designer.cs
            │   │       │   │   ├── Resources.resx
            │   │       │   │   ├── Settings.Designer.cs
            │   │       │   │   └── Settings.settings
            │   │       │   └── SaveScreenImage.csproj
            │   │       ├── SaveScreenImage.sln
            │   │       └── SaveScreenImage.suo
            │   ├── 40
            │   │   └── DynamicShowWindow
            │   │       ├── DynamicShowWindow
            │   │       │   ├── DynamicShowWindow.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   └── Program.cs
            │   │       ├── DynamicShowWindow.sln
            │   │       └── DynamicShowWindow.suo
            │   └── database
            │       ├── db_15_Data.MDF
            │       └── db_15_Log.LDF
            ├── 16
            │   ├── 01
            │   │   └── BubbleUp
            │   │       ├── BubbleUp
            │   │       │   ├── BubbleSorter.cs
            │   │       │   ├── BubbleUp.csproj
            │   │       │   └── Program.cs
            │   │       ├── BubbleUp.sln
            │   │       └── BubbleUp.suo
            │   ├── 02
            │   │   └── Choice
            │   │       ├── Choice
            │   │       │   ├── Choice.csproj
            │   │       │   ├── Program.cs
            │   │       │   └── SelectionSorter.cs
            │   │       ├── Choice.sln
            │   │       └── Choice.suo
            │   ├── 03
            │   │   └── Intervene
            │   │       ├── Intervene
            │   │       │   ├── InsertionSorter.cs
            │   │       │   ├── Intervene.csproj
            │   │       │   └── Program.cs
            │   │       ├── Intervene.sln
            │   │       └── Intervene.suo
            │   ├── 04
            │   │   └── Hope
            │   │       ├── Hope
            │   │       │   ├── Hope.csproj
            │   │       │   ├── Program.cs
            │   │       │   └── ShellSorter.cs
            │   │       ├── Hope.sln
            │   │       └── Hope.suo
            │   ├── 05
            │   │   └── UnilateralismChainTable
            │   │       ├── UnilateralismChainTable
            │   │       │   ├── Clist.cs
            │   │       │   └── UnilateralismChainTable.csproj
            │   │       ├── UnilateralismChainTable.sln
            │   │       └── UnilateralismChainTable.suo
            │   ├── 06
            │   │   └── BothChainTable
            │   │       ├── BothChainTable
            │   │       │   ├── BothChainTable.csproj
            │   │       │   └── DoubleLink.cs
            │   │       ├── BothChainTable.sln
            │   │       └── BothChainTable.suo
            │   ├── 07
            │   │   └── StackApply
            │   │       ├── StackApply
            │   │       │   ├── CStack.cs
            │   │       │   └── StackApply.csproj
            │   │       ├── StackApply.sln
            │   │       └── StackApply.suo
            │   ├── 08
            │   │   └── Alignment
            │   │       ├── Alignment
            │   │       │   ├── Alignment.csproj
            │   │       │   └── CQueue.cs
            │   │       ├── Alignment.sln
            │   │       └── Alignment.suo
            │   ├── 09
            │   │   └── Arbor
            │   │       ├── Arbor
            │   │       │   ├── Arbor.csproj
            │   │       │   └── Ctree.cs
            │   │       ├── Arbor.sln
            │   │       └── Arbor.suo
            │   ├── 10
            │   │   └── PrimeNumber
            │   │       ├── PrimeNumber
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── PrimeNumber.csproj
            │   │       │   └── Program.cs
            │   │       ├── PrimeNumber.sln
            │   │       └── PrimeNumber.suo
            │   ├── 11
            │   │   └── Encrypt
            │   │       ├── Encrypt
            │   │       │   ├── Encrypt.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   └── Program.cs
            │   │       ├── Encrypt.sln
            │   │       ├── Encrypt.suo
            │   │       └── 程序使用说明.txt
            │   ├── 12
            │   │   └── BuildNumber
            │   │       ├── BuildNumber
            │   │       │   ├── BuildNumber.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   └── Program.cs
            │   │       ├── BuildNumber.sln
            │   │       └── BuildNumber.suo
            │   ├── 13
            │   │   └── IDCardRemove
            │   │       ├── IDCardRemove
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── IDCardRemove.csproj
            │   │       │   └── Program.cs
            │   │       ├── IDCardRemove.sln
            │   │       └── IDCardRemove.suo
            │   ├── 14
            │   │   └── HundredChicken
            │   │       ├── HundredChicken
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── HundredChicken.csproj
            │   │       │   └── Program.cs
            │   │       ├── HundredChicken.sln
            │   │       └── HundredChicken.suo
            │   ├── 15
            │   │   └── ALitterArms
            │   │       ├── ALitterArms
            │   │       │   ├── ALitterArms.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   └── Program.cs
            │   │       ├── ALitterArms.sln
            │   │       └── ALitterArms.suo
            │   ├── 16
            │   │   └── AgreeArithmetic
            │   │       ├── AgreeArithmetic
            │   │       │   ├── AgreeArithmetic.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   └── Program.cs
            │   │       ├── AgreeArithmetic.sln
            │   │       └── AgreeArithmetic.suo
            │   ├── 17
            │   │   └── DaffodilAccount
            │   │       ├── DaffodilAccount
            │   │       │   ├── DaffodilAccount.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   └── Program.cs
            │   │       ├── DaffodilAccount.sln
            │   │       └── DaffodilAccount.suo
            │   ├── 18
            │   │   └── ByteConversion
            │   │       ├── ByteConversion
            │   │       │   ├── ByteConversion.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   └── Program.cs
            │   │       ├── ByteConversion.sln
            │   │       └── ByteConversion.suo
            │   ├── 19
            │   │   └── ArbitrarinessCombination
            │   │       ├── ArbitrarinessCombination
            │   │       │   ├── ArbitrarinessCombination.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   └── Program.cs
            │   │       ├── ArbitrarinessCombination.sln
            │   │       └── ArbitrarinessCombination.suo
            │   └── 20
            │       └── LookupNear
            │           ├── LookupNear
            │           │   ├── Form1.cs
            │           │   ├── Form1.Designer.cs
            │           │   ├── Form1.resx
            │           │   ├── LookupNear.csproj
            │           │   └── Program.cs
            │           ├── LookupNear.sln
            │           └── LookupNear.suo
            ├── 17
            │   ├── 01
            │   │   └── CommDataConn
            │   │       ├── CommDataConn
            │   │       │   ├── app.config
            │   │       │   ├── CommDataConn.csproj
            │   │       │   ├── CommonDataOperate.cs
            │   │       │   └── Program.cs
            │   │       ├── CommDataConn.sln
            │   │       └── CommDataConn.suo
            │   ├── 02
            │   │   └── ConfigureODBC
            │   │       ├── CollocateODBC
            │   │       │   ├── CollocateODBC.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   └── Program.cs
            │   │       ├── CollocateODBC.sln
            │   │       └── CollocateODBC.suo
            │   ├── 03
            │   │   └── UseProcedure
            │   │       ├── UseProcedure
            │   │       │   ├── FormAdd.cs
            │   │       │   ├── FormAdd.Designer.cs
            │   │       │   ├── FormAdd.resx
            │   │       │   ├── FormDelete.cs
            │   │       │   ├── FormDelete.Designer.cs
            │   │       │   ├── FormDelete.resx
            │   │       │   ├── FormMain.cs
            │   │       │   ├── FormMain.Designer.cs
            │   │       │   ├── FormMain.resx
            │   │       │   ├── FormSelect.cs
            │   │       │   ├── FormSelect.Designer.cs
            │   │       │   ├── FormSelect.resx
            │   │       │   ├── FormUpdate.cs
            │   │       │   ├── FormUpdate.Designer.cs
            │   │       │   ├── FormUpdate.resx
            │   │       │   ├── Program.cs
            │   │       │   └── UseProcedure.csproj
            │   │       ├── UseProcedure.sln
            │   │       └── UseProcedure.suo
            │   ├── 04
            │   │   └── ConstraintInfo
            │   │       ├── ConstraintInfo
            │   │       │   ├── ConstraintInfo.csproj
            │   │       │   ├── FormGoodsType.cs
            │   │       │   ├── FormGoodsType.Designer.cs
            │   │       │   ├── FormGoodsType.resx
            │   │       │   ├── GoodsType.cs
            │   │       │   └── Program.cs
            │   │       ├── ConstraintInfo.sln
            │   │       └── ConstraintInfo.suo
            │   ├── 05
            │   │   └── CommitDataByDataGridView
            │   │       ├── CommitDataByDataGridView
            │   │       │   ├── CommitDataByDataGridView.csproj
            │   │       │   ├── Emp.cs
            │   │       │   ├── FormEmp.cs
            │   │       │   ├── FormEmp.Designer.cs
            │   │       │   ├── FormEmpInput.cs
            │   │       │   ├── FormEmpInput.Designer.cs
            │   │       │   ├── FormEmpInput.resx
            │   │       │   ├── FormEmp.resx
            │   │       │   └── Program.cs
            │   │       ├── CommitDataByDataGridView.sln
            │   │       └── CommitDataByDataGridView.suo
            │   ├── 06
            │   │   └── DBCrystalReport
            │   │       ├── DBCrystalReport
            │   │       │   ├── CrystalReport1.cs
            │   │       │   ├── CrystalReport1.rpt
            │   │       │   ├── DBCrystalReport.csproj
            │   │       │   ├── DBCrystalReport.csproj.user
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   └── Program.cs
            │   │       ├── DBCrystalReport.sln
            │   │       └── DBCrystalReport.suo
            │   ├── 07
            │   │   └── BackupAndRevert
            │   │       ├── BackupAndRevert
            │   │       │   ├── BackupAndRevert.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── Form2.cs
            │   │       │   ├── Form2.Designer.cs
            │   │       │   ├── Form2.resx
            │   │       │   └── Program.cs
            │   │       ├── BackupAndRevert.sln
            │   │       └── BackupAndRevert.suo
            │   ├── 08
            │   │   └── ModuleImpower
            │   │       ├── ModuleImpower
            │   │       │   ├── DataLogic.cs
            │   │       │   ├── FormAppMain.cs
            │   │       │   ├── FormAppMain.Designer.cs
            │   │       │   ├── FormAppMain.resx
            │   │       │   ├── FormLogin.cs
            │   │       │   ├── FormLogin.Designer.cs
            │   │       │   ├── FormLogin.resx
            │   │       │   ├── FormOperator.cs
            │   │       │   ├── FormOperator.Designer.cs
            │   │       │   ├── FormOperatorInput.cs
            │   │       │   ├── FormOperatorInput.Designer.cs
            │   │       │   ├── FormOperatorInput.resx
            │   │       │   ├── FormOperator.resx
            │   │       │   ├── FormPurviewAssign.cs
            │   │       │   ├── FormPurviewAssign.Designer.cs
            │   │       │   ├── FormPurviewAssign.resx
            │   │       │   ├── GlobalProperty.cs
            │   │       │   ├── ModuleImpower.csproj
            │   │       │   ├── Operator.cs
            │   │       │   ├── Program.cs
            │   │       │   └── Useful.cs
            │   │       ├── ModuleImpower.sln
            │   │       └── ModuleImpower.suo
            │   ├── 09
            │   │   └── RegisterSoftware
            │   │       ├── RegisterByCpuAndDisk
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── Program.cs
            │   │       │   └── RegisterByCpuAndDisk.csproj
            │   │       ├── RegisterByNetworkCard
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── Program.cs
            │   │       │   └── RegisterByNetworkCard.csproj
            │   │       ├── RegisterByRegedit
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── Program.cs
            │   │       │   └── RegisterByRegedit.csproj
            │   │       ├── RegisterSoftware.sln
            │   │       └── RegisterSoftware.suo
            │   ├── 10
            │   │   └── EncryptData
            │   │       ├── EncryptData
            │   │       │   ├── EncryptData.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   └── Program.cs
            │   │       ├── EncryptDataByHash
            │   │       │   ├── EncryptData.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   └── Program.cs
            │   │       ├── EncryptData.sln
            │   │       └── EncryptData.suo
            │   ├── 11
            │   │   └── CustomControl
            │   │       ├── CustomControl
            │   │       │   ├── CTextBox.cs
            │   │       │   ├── CTextBox.Designer.cs
            │   │       │   ├── CTextBox.resx
            │   │       │   ├── CustomControl.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   └── Program.cs
            │   │       ├── CustomControl.sln
            │   │       └── CustomControl.suo
            │   ├── 12
            │   │   └── CopyFile
            │   │       ├── CopyFile.sln
            │   │       ├── CopyFile.suo
            │   │       ├── CopyLotFiles
            │   │       │   ├── CopyLotFiles.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   └── Program.cs
            │   │       ├── FileCopy
            │   │       │   ├── FileCopy.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   └── Program.cs
            │   │       └── FileCopyPlan
            │   │           ├── FileCopyPlan.csproj
            │   │           ├── Form1.cs
            │   │           ├── Form1.Designer.cs
            │   │           ├── Form1.resx
            │   │           └── Program.cs
            │   ├── 13
            │   │   └── EncryptTextFile
            │   │       ├── EncryptTextFileOne
            │   │       │   ├── EncryptTextFileOne.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   └── Program.cs
            │   │       ├── EncryptTextFile.sln
            │   │       ├── EncryptTextFile.suo
            │   │       └── EncryptTextFileTwo
            │   │           ├── EncryptTextFileTwo.csproj
            │   │           ├── Form1.cs
            │   │           ├── Form1.Designer.cs
            │   │           ├── Form1.resx
            │   │           └── Program.cs
            │   ├── 14
            │   │   └── ZipAndUnZIP
            │   │       ├── ZipAndUnZIP
            │   │       │   ├── FormGzip.cs
            │   │       │   ├── FormGzip.Designer.cs
            │   │       │   ├── FormGzip.resx
            │   │       │   ├── FormMain.cs
            │   │       │   ├── FormMain.Designer.cs
            │   │       │   ├── FormMain.resx
            │   │       │   ├── FormUnGzip.cs
            │   │       │   ├── FormUnGzip.Designer.cs
            │   │       │   ├── FormUnGzip.resx
            │   │       │   ├── FormUnWinRAR.cs
            │   │       │   ├── FormUnWinRAR.Designer.cs
            │   │       │   ├── FormUnWinRAR.resx
            │   │       │   ├── FormWinRAR.cs
            │   │       │   ├── FormWinRAR.Designer.cs
            │   │       │   ├── FormWinRAR.resx
            │   │       │   ├── Program.cs
            │   │       │   └── ZipAndUnZIP.csproj
            │   │       ├── ZipAndUnZIP.sln
            │   │       └── ZipAndUnZIP.suo
            │   ├── 15
            │   │   └── MultiAccessingControls
            │   │       ├── MultiAccessingControls
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── MultiAccessingControls.csproj
            │   │       │   └── Program.cs
            │   │       ├── MultiAccessingControls.sln
            │   │       └── MultiAccessingControls.suo
            │   ├── 16
            │   │   └── LongControl
            │   │       ├── LongControl
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── LongControl.csproj
            │   │       │   └── Program.cs
            │   │       ├── LongControl.sln
            │   │       ├── LongControl.suo
            │   │       └── LongService
            │   │           ├── Form1.cs
            │   │           ├── Form1.Designer.cs
            │   │           ├── Form1.resx
            │   │           ├── LongService.csproj
            │   │           └── Program.cs
            │   ├── 17
            │   │   ├── SameDLL
            │   │   │   ├── SameDLL
            │   │   │   │   ├── Program.cs
            │   │   │   │   ├── SameDLL.csproj
            │   │   │   │   └── Test.csproj
            │   │   │   ├── SameDLL.sln
            │   │   │   ├── SameDLL.suo
            │   │   │   └── Test
            │   │   │       ├── Class1.cs
            │   │   │       └── Test.csproj
            │   │   └── Test_反射
            │   │       ├── bin
            │   │       ├── Class1.cs
            │   │       ├── obj
            │   │       ├── Properties
            │   │       │   └── AssemblyInfo.cs
            │   │       ├── Test.csproj
            │   │       ├── Test_反射.sln
            │   │       └── Test_反射.suo
            │   ├── 18
            │   │   └── ChToPhoneticize
            │   │       ├── ChToPhoneticize
            │   │       │   ├── ChToPhoneticize.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   └── Program.cs
            │   │       ├── ChToPhoneticize.sln
            │   │       └── ChToPhoneticize.suo
            │   ├── 19
            │   │   └── BarCode
            │   │       ├── BarCode
            │   │       │   ├── BarCode.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── Program.cs
            │   │       │   └── SystemSet.ini
            │   │       ├── BarCode.sln
            │   │       ├── BarCode.suo
            │   │       └── 程序使用说明.txt
            │   ├── 20
            │   │   └── ChineseCode
            │   │       ├── ChineseCode
            │   │       │   ├── ChineseCode.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   └── Program.cs
            │   │       ├── ChineseCode.sln
            │   │       └── ChineseCode.suo
            │   └── database
            │       ├── db_17_Data.MDF
            │       └── db_17_Log.LDF
            ├── 4
            │   ├── 01
            │   │   └── UseFor
            │   │       ├── UseFor
            │   │       │   ├── Program.cs
            │   │       │   └── UseFor.csproj
            │   │       ├── UseFor.sln
            │   │       └── UseFor.suo
            │   ├── 02
            │   │   └── UseRoundSentence
            │   │       ├── UseRoundSentence
            │   │       │   ├── Program.cs
            │   │       │   └── UseRoundSentence.csproj
            │   │       ├── UseRoundSentence.sln
            │   │       └── UseRoundSentence.suo
            │   ├── 03
            │   │   └── MyLibrary
            │   │       ├── MyLibrary
            │   │       │   ├── Class1.cs
            │   │       │   └── MyLibrary.csproj
            │   │       ├── MyLibrary.sln
            │   │       ├── MyLibrary.suo
            │   │       └── Run
            │   │           ├── Program.cs
            │   │           └── Run.csproj
            │   ├── 04
            │   │   └── BoxingAndUnBoxing
            │   │       ├── BoxingAndUnBoxing
            │   │       │   ├── BoxingAndUnBoxing.csproj
            │   │       │   └── Program.cs
            │   │       ├── BoxingAndUnBoxing.sln
            │   │       └── BoxingAndUnBoxing.suo
            │   ├── 05
            │   │   └── UseOperator
            │   │       ├── UseOperator
            │   │       │   ├── Program.cs
            │   │       │   └── UseOperator.csproj
            │   │       ├── UseOperator.sln
            │   │       └── UseOperator.suo
            │   ├── 06
            │   │   └── InitStruct
            │   │       ├── InitStruct
            │   │       │   ├── InitStruct.csproj
            │   │       │   └── Program.cs
            │   │       ├── InitStruct.sln
            │   │       └── InitStruct.suo
            │   ├── 07
            │   │   └── UseParams
            │   │       ├── UseParams
            │   │       │   ├── Program.cs
            │   │       │   └── UseParams.csproj
            │   │       ├── UseParams.sln
            │   │       └── UseParams.suo
            │   ├── 08
            │   │   └── InitStaticMember
            │   │       ├── InitStaticMember
            │   │       │   ├── InitStaticMember.csproj
            │   │       │   └── Program.cs
            │   │       ├── InitStaticMember.sln
            │   │       └── InitStaticMember.suo
            │   ├── 09
            │   │   └── UseChildClass
            │   │       ├── CorrectClass
            │   │       │   ├── CorrectClass.csproj
            │   │       │   └── Program.cs
            │   │       ├── ErrorClass
            │   │       │   ├── ErrorClass.csproj
            │   │       │   └── Program.cs
            │   │       ├── UseChildClass.sln
            │   │       └── UseChildClass.suo
            │   ├── 10
            │   │   └── ConvertType
            │   │       ├── ConvertType.sln
            │   │       ├── ConvertType.suo
            │   │       ├── Correct
            │   │       │   ├── Correct.csproj
            │   │       │   └── Program.cs
            │   │       └── Error
            │   │           ├── Error.csproj
            │   │           └── Program.cs
            │   ├── 11
            │   │   └── FransferVirtualFunction
            │   │       ├── FransferVirtualFunction
            │   │       │   ├── ClassDiagram1.cd
            │   │       │   ├── FransferVirtualFunction.csproj
            │   │       │   └── Program.cs
            │   │       ├── FransferVirtualFunction.sln
            │   │       └── FransferVirtualFunction.suo
            │   ├── 12
            │   │   └── SaveNullToDataBase
            │   │       ├── SaveNullToDataBase
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── Program.cs
            │   │       │   └── SaveNullToDataBase.csproj
            │   │       ├── SaveNullToDataBase.sln
            │   │       └── SaveNullToDataBase.suo
            │   ├── 13
            │   │   └── ReaderNullFromDb
            │   │       ├── ReaderNullFromDb
            │   │       │   ├── Program.cs
            │   │       │   ├── ReaderNullFromDb.csproj
            │   │       │   └── UserInfo.cs
            │   │       ├── ReaderNullFromDb.sln
            │   │       └── ReaderNullFromDb.suo
            │   ├── 14
            │   │   └── MisapplyNull
            │   │       ├── MisapplyNull
            │   │       │   ├── MisapplyNull.csproj
            │   │       │   └── Program.cs
            │   │       ├── MisapplyNull.sln
            │   │       └── MisapplyNull.suo
            │   ├── 15
            │   │   └── SnareAboutArrayList
            │   │       ├── SnareAboutArrayList
            │   │       │   ├── Program.cs
            │   │       │   └── SnareAboutArrayList.csproj
            │   │       ├── SnareAboutArrayList.sln
            │   │       └── SnareAboutArrayList.suo
            │   ├── 16
            │   │   └── MyDbDataReader
            │   │       ├── MyDbDataReader
            │   │       │   ├── MyDbDataReader.csproj
            │   │       │   └── Program.cs
            │   │       ├── MyDbDataReader.sln
            │   │       └── MyDbDataReader.suo
            │   ├── 17
            │   │   └── UseControls
            │   │       ├── UseControls
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── Program.cs
            │   │       │   └── UseControls.csproj
            │   │       ├── UseControls.sln
            │   │       └── UseControls.suo
            │   ├── 18
            │   │   └── UseComboBox
            │   │       ├── UseComboBox
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── Program.cs
            │   │       │   └── UseComboBox.csproj
            │   │       ├── UseComboBox.sln
            │   │       └── UseComboBox.suo
            │   ├── 19
            │   │   └── UseDateTime
            │   │       ├── UseDateTime
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── Program.cs
            │   │       │   ├── UseDateTime.csproj
            │   │       │   ├── UserInfo.cs
            │   │       │   └── UserInfoOperate.cs
            │   │       ├── UseDateTime.sln
            │   │       └── UseDateTime.suo
            │   ├── 20
            │   │   └── UseDataReader
            │   │       ├── UseDataReader
            │   │       │   ├── Program.cs
            │   │       │   └── UseDataReader.csproj
            │   │       ├── UseDataReader.sln
            │   │       └── UseDataReader.suo
            │   ├── 21
            │   │   └── UseDataTable
            │   │       ├── UseDataTable
            │   │       │   ├── Program.cs
            │   │       │   └── UseDataTable.csproj
            │   │       ├── UseDataTable.sln
            │   │       └── UseDataTable.suo
            │   ├── 22
            │   │   └── UseExecuteScalar
            │   │       ├── UseExecuteScalar
            │   │       │   ├── Program.cs
            │   │       │   └── UseExecuteScalar.csproj
            │   │       ├── UseExecuteScalar.sln
            │   │       └── UseExecuteScalar.suo
            │   ├── 23
            │   │   └── AddDataGridViewRow
            │   │       ├── AddDataGridViewRow
            │   │       │   ├── AddDataGridViewRow.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   └── Program.cs
            │   │       ├── AddDataGridViewRow.sln
            │   │       └── AddDataGridViewRow.suo
            │   ├── 24
            │   │   └── DataGridViewReset
            │   │       ├── DataGridViewReset
            │   │       │   ├── DataGridViewReset.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   └── Program.cs
            │   │       ├── DataGridViewReset.sln
            │   │       └── DataGridViewReset.suo
            │   ├── 25
            │   │   └── BindingAutoId
            │   │       ├── BindingAutoId
            │   │       │   ├── BindingAutoId.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── Goods.cs
            │   │       │   └── Program.cs
            │   │       ├── BindingAutoId.sln
            │   │       └── BindingAutoId.suo
            │   ├── 26
            │   │   └── SynchronByValue
            │   │       ├── SynchronByValue
            │   │       │   ├── Program.cs
            │   │       │   ├── SynchronByValue.csproj
            │   │       │   └── SynchronValue.cs
            │   │       ├── SynchronByValue.sln
            │   │       └── SynchronByValue.suo
            │   ├── 27
            │   │   └── UseLockThis
            │   │       ├── UseLockThis
            │   │       │   ├── Program.cs
            │   │       │   └── UseLockThis.csproj
            │   │       ├── UseLockThis.sln
            │   │       └── UseLockThis.suo
            │   ├── 28
            │   │   └── UseFirst
            │   │       ├── UseFirst
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── Program.cs
            │   │       │   ├── UseFirst.csproj
            │   │       │   └── UserInfo.cs
            │   │       ├── UseFirst.sln
            │   │       └── UseFirst.suo
            │   ├── 29
            │   │   └── OperateFile
            │   │       ├── OperateFile
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── OperateFile.csproj
            │   │       │   └── Program.cs
            │   │       ├── OperateFile.sln
            │   │       └── OperateFile.suo
            │   ├── 30
            │   │   └── OperateBinaryFile
            │   │       ├── OperateBinaryFile
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── OperateBinaryFile.csproj
            │   │       │   └── Program.cs
            │   │       ├── OperateBinaryFile.sln
            │   │       └── OperateBinaryFile.suo
            │   └── database
            │       ├── db_04_Data.MDF
            │       └── db_04_Log.LDF
            ├── 5
            │   ├── 01
            │   │   └── UseTryCatch
            │   │       ├── UseTryCatch
            │   │       │   ├── Program.cs
            │   │       │   └── UseTryCatch.csproj
            │   │       ├── UseTryCatch.sln
            │   │       └── UseTryCatch.suo
            │   ├── 05
            │   │   └── GlobalVariable
            │   │       ├── GlobalVariable
            │   │       │   ├── GlobalVariable.csproj
            │   │       │   └── Program.cs
            │   │       ├── GlobalVariable.sln
            │   │       └── GlobalVariable.suo
            │   ├── 08
            │   │   └── RefValueType
            │   │       ├── RefValueType
            │   │       │   ├── Program.cs
            │   │       │   └── RefValueType.csproj
            │   │       ├── RefValueType.sln
            │   │       └── RefValueType.suo
            │   ├── 09
            │   │   └── JudgeString
            │   │       ├── JudgeString
            │   │       │   ├── JudgeString.csproj
            │   │       │   └── Program.cs
            │   │       ├── JudgeString.sln
            │   │       └── JudgeString.suo
            │   ├── 11
            │   │   └── AboutT
            │   │       ├── AboutT
            │   │       │   ├── AboutT.csproj
            │   │       │   └── Program.cs
            │   │       ├── AboutT.sln
            │   │       └── AboutT.suo
            │   ├── 14
            │   │   └── OverLoad
            │   │       ├── OverLoad
            │   │       │   ├── OverLoad.csproj
            │   │       │   └── Program.cs
            │   │       ├── OverLoad.sln
            │   │       └── OverLoad.suo
            │   ├── 15
            │   │   └── UseTryCatchFinally
            │   │       ├── UseTryCatchFinally
            │   │       │   ├── Program.cs
            │   │       │   └── UseTryCatchFinally.csproj
            │   │       ├── UseTryCatchFinally.sln
            │   │       └── UseTryCatchFinally.suo
            │   ├── 17
            │   │   └── TransferStaticFunction
            │   │       ├── TransferStaticFunction
            │   │       │   ├── Program.cs
            │   │       │   └── TransferStaticFunction.csproj
            │   │       ├── TransferStaticFunction.sln
            │   │       └── TransferStaticFunction.suo
            │   ├── 18
            │   │   └── StringAndStringBuilder
            │   │       ├── StringAndStringBuilder
            │   │       │   ├── Program.cs
            │   │       │   └── StringAndStringBuilder.csproj
            │   │       ├── StringAndStringBuilder.sln
            │   │       └── StringAndStringBuilder.suo
            │   ├── 19
            │   │   └── AboutStruct
            │   │       ├── AboutStruct
            │   │       │   ├── AboutStruct.csproj
            │   │       │   └── Program.cs
            │   │       ├── AboutStruct.sln
            │   │       └── AboutStruct.suo
            │   └── 20
            │       └── CurrentDirectory
            │           ├── CurrentDirectory
            │           │   ├── CurrentDirectory.csproj
            │           │   ├── Form1.cs
            │           │   ├── Form1.Designer.cs
            │           │   ├── Form1.resx
            │           │   └── Program.cs
            │           ├── CurrentDirectory.sln
            │           └── CurrentDirectory.suo
            ├── 6
            │   ├── 01
            │   │   └── BoxingAndUnBoxing
            │   │       ├── BoxingAndUnBoxing
            │   │       │   ├── BoxingAndUnBoxing.csproj
            │   │       │   └── Program.cs
            │   │       ├── BoxingAndUnBoxing.sln
            │   │       └── BoxingAndUnBoxing.suo
            │   ├── 02
            │   │   └── ValueTypeAndReferType
            │   │       ├── ValueTypeAndReferType
            │   │       │   ├── Program.cs
            │   │       │   └── ValueTypeAndReferType.csproj
            │   │       ├── ValueTypeAndReferType.sln
            │   │       └── ValueTypeAndReferType.suo
            │   ├── 03
            │   │   └── ConvertType
            │   │       ├── ConvertType
            │   │       │   ├── ConvertType.csproj
            │   │       │   └── Program.cs
            │   │       ├── ConvertType.sln
            │   │       └── ConvertType.suo
            │   ├── 04
            │   │   └── Displacement
            │   │       ├── Displacement
            │   │       │   ├── Displacement.csproj
            │   │       │   └── Program.cs
            │   │       ├── Displacement.sln
            │   │       └── Displacement.suo
            │   ├── 05
            │   │   └── OperateSequence
            │   │       ├── OperateSequence
            │   │       │   ├── OperateSequence.csproj
            │   │       │   └── Program.cs
            │   │       ├── OperateSequence.sln
            │   │       └── OperateSequence.suo
            │   ├── 06
            │   │   └── ParameterType
            │   │       ├── ParameterType
            │   │       │   ├── ParameterType.csproj
            │   │       │   └── Program.cs
            │   │       ├── ParameterType.sln
            │   │       └── ParameterType.suo
            │   ├── 07
            │   │   └── OverLoad
            │   │       ├── OverLoad
            │   │       │   ├── OverLoad.csproj
            │   │       │   └── Program.cs
            │   │       ├── OverLoad.sln
            │   │       └── OverLoad.suo
            │   ├── 08
            │   │   └── RewriteFun
            │   │       ├── RewriteFun
            │   │       │   ├── Program.cs
            │   │       │   └── RewriteFun.csproj
            │   │       ├── RewriteFun.sln
            │   │       └── RewriteFun.suo
            │   ├── 09
            │   │   └── DeclareInterface
            │   │       ├── DeclareInterface
            │   │       │   ├── DeclareInterface.csproj
            │   │       │   └── ImyInterface.cs
            │   │       ├── DeclareInterface.sln
            │   │       └── DeclareInterface.suo
            │   ├── 10
            │   │   └── ImplementInterface
            │   │       ├── GeneralImplement
            │   │       │   ├── GeneralImplement.csproj
            │   │       │   └── Program.cs
            │   │       ├── ImplementInterface.sln
            │   │       ├── ImplementInterface.suo
            │   │       └── ShowImplement
            │   │           ├── Program.cs
            │   │           └── ShowImplement.csproj
            │   ├── 11
            │   │   └── AboutAbstract
            │   │       ├── AboutAbstract
            │   │       │   ├── AboutAbstract.csproj
            │   │       │   └── Program.cs
            │   │       ├── AboutAbstract.sln
            │   │       └── AboutAbstract.suo
            │   ├── 12
            │   │   └── AboutEncapsulation
            │   │       ├── AboutEncapsulation
            │   │       │   ├── AboutEncapsulation.csproj
            │   │       │   └── Program.cs
            │   │       ├── AboutEncapsulation.sln
            │   │       └── AboutEncapsulation.suo
            │   ├── 13
            │   │   └── AboutInherit
            │   │       ├── AboutInherit
            │   │       │   ├── AboutInherit.csproj
            │   │       │   └── Program.cs
            │   │       ├── AboutInherit.sln
            │   │       └── AboutInherit.suo
            │   ├── 14
            │   │   └── AboutPolymorphism
            │   │       ├── AboutPolymorphism
            │   │       │   ├── AboutPolymorphism.csproj
            │   │       │   └── Program.cs
            │   │       ├── AboutPolymorphism.sln
            │   │       └── AboutPolymorphism.suo
            │   ├── 15
            │   │   └── AboutRegion
            │   │       ├── AboutRegion
            │   │       │   ├── AboutRegion.csproj
            │   │       │   └── Program.cs
            │   │       ├── AboutRegion.sln
            │   │       └── AboutRegion.suo
            │   ├── 16
            │   │   └── AboutIndex
            │   │       ├── AboutIndex
            │   │       │   ├── AboutIndex.csproj
            │   │       │   └── Program.cs
            │   │       ├── AboutIndex.sln
            │   │       └── AboutIndex.suo
            │   ├── 17
            │   │   └── AboutBaseAndThis
            │   │       ├── AboutBaseAndThis
            │   │       │   ├── AboutBaseAndThis.csproj
            │   │       │   └── Program.cs
            │   │       ├── AboutBaseAndThis.sln
            │   │       └── AboutBaseAndThis.suo
            │   ├── 18
            │   │   └── AboutStatic
            │   │       ├── AboutStatic
            │   │       │   ├── AboutStatic.csproj
            │   │       │   └── Program.cs
            │   │       ├── AboutStatic.sln
            │   │       └── AboutStatic.suo
            │   ├── 19
            │   │   └── AboutObject
            │   │       ├── AboutObject
            │   │       │   ├── AboutObject.csproj
            │   │       │   └── Program.cs
            │   │       ├── AboutObject.sln
            │   │       └── AboutObject.suo
            │   ├── 20
            │   │   └── AboutNullable
            │   │       ├── AboutNullable
            │   │       │   ├── AboutNullable.csproj
            │   │       │   └── Program.cs
            │   │       ├── AboutNullable.sln
            │   │       └── AboutNullable.suo
            │   ├── 21
            │   │   └── PartialClass
            │   │       ├── PartialClass
            │   │       │   ├── class_private.cs
            │   │       │   ├── class_public.cs
            │   │       │   ├── PartialClass.csproj
            │   │       │   └── Program.cs
            │   │       ├── PartialClass.sln
            │   │       └── PartialClass.suo
            │   ├── 22
            │   │   └── AboutAnonymityFun
            │   │       ├── AboutAnonymityFun
            │   │       │   ├── AboutAnonymityFun.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   └── Program.cs
            │   │       ├── AboutAnonymityFun.sln
            │   │       └── AboutAnonymityFun.suo
            │   ├── 23
            │   │   └── AboutAttribute
            │   │       ├── AboutAttribute
            │   │       │   ├── AboutAttribute.csproj
            │   │       │   └── Program.cs
            │   │       ├── AboutAttribute.sln
            │   │       └── AboutAttribute.suo
            │   ├── 24
            │   │   └── CustomAttribute
            │   │       ├── CustomAttribute
            │   │       │   ├── CustomAttribute.csproj
            │   │       │   └── Program.cs
            │   │       ├── CustomAttribute.sln
            │   │       └── CustomAttribute.suo
            │   ├── 25
            │   │   └── AboutTClass
            │   │       ├── AboutTClass
            │   │       │   ├── AboutTClass.csproj
            │   │       │   └── Program.cs
            │   │       ├── AboutTClass.sln
            │   │       └── AboutTClass.suo
            │   ├── 26
            │   │   └── UseContain
            │   │       ├── UseContain
            │   │       │   ├── Program.cs
            │   │       │   └── UseContain.csproj
            │   │       ├── UseContain.sln
            │   │       └── UseContain.suo
            │   ├── 27
            │   │   └── AboutRepeat
            │   │       ├── AboutRepeat
            │   │       │   ├── AboutRepeat.csproj
            │   │       │   └── Program.cs
            │   │       ├── AboutRepeat.sln
            │   │       └── AboutRepeat.suo
            │   ├── 28
            │   │   └── AboutClone
            │   │       ├── AboutClone
            │   │       │   ├── AboutClone.csproj
            │   │       │   └── Program.cs
            │   │       ├── AboutClone.sln
            │   │       └── AboutClone.suo
            │   ├── 29
            │   │   └── AboutOperator
            │   │       ├── AboutOperator
            │   │       │   ├── AboutOperator.csproj
            │   │       │   └── Program.cs
            │   │       ├── AboutOperator.sln
            │   │       └── AboutOperator.suo
            │   ├── 30
            │   │   └── AboutSort
            │   │       ├── AboutSort
            │   │       │   ├── AboutSort.csproj
            │   │       │   └── Program.cs
            │   │       ├── AboutSort.sln
            │   │       └── AboutSort.suo
            │   ├── 31
            │   │   └── AboutCatch
            │   │       ├── AboutCatch
            │   │       │   ├── AboutCatch.csproj
            │   │       │   └── Program.cs
            │   │       ├── AboutCatch.sln
            │   │       └── AboutCatch.suo
            │   ├── 32
            │   │   └── CustomOutInfo
            │   │       ├── CustomOutInfo
            │   │       │   ├── CustomOutInfo.csproj
            │   │       │   └── Program.cs
            │   │       ├── CustomOutInfo.sln
            │   │       └── CustomOutInfo.suo
            │   ├── 33
            │   │   └── AboutDelegate
            │   │       ├── AboutDelegate
            │   │       │   ├── AboutDelegate.csproj
            │   │       │   └── Program.cs
            │   │       ├── AboutDelegate.sln
            │   │       └── AboutDelegate.suo
            │   ├── 34
            │   │   └── CustomEvent
            │   │       ├── CustomEvent
            │   │       │   ├── CustomEvent.csproj
            │   │       │   └── Program.cs
            │   │       ├── CustomEvent.sln
            │   │       └── CustomEvent.suo
            │   ├── 35
            │   │   └── AboutSerializer
            │   │       ├── AboutSerializer
            │   │       │   ├── AboutSerializer.csproj
            │   │       │   └── Program.cs
            │   │       ├── AboutSerializer.sln
            │   │       └── AboutSerializer.suo
            │   ├── 36
            │   │   └── AboutXmlSerializer
            │   │       ├── AboutXmlSerializer
            │   │       │   ├── AboutXmlSerializer.csproj
            │   │       │   └── Program.cs
            │   │       ├── AboutXmlSerializer.sln
            │   │       └── AboutXmlSerializer.suo
            │   ├── 37
            │   │   └── CustomXmlSerializer
            │   │       ├── CustomXmlSerializer
            │   │       │   ├── CustomXmlSerializer.csproj
            │   │       │   └── Program.cs
            │   │       ├── CustomXmlSerializer.sln
            │   │       └── CustomXmlSerializer.suo
            │   ├── 38
            │   │   └── AutoAssembly
            │   │       ├── AutoAssembly
            │   │       │   ├── AutoAssembly.csproj
            │   │       │   └── Program.cs
            │   │       ├── AutoAssembly.sln
            │   │       ├── AutoAssembly.suo
            │   │       └── MyClass
            │   │           ├── MyClass.cs
            │   │           └── MyClass.csproj
            │   ├── 39
            │   │   └── AboutVar
            │   │       ├── AboutVar
            │   │       │   ├── AboutVar.csproj
            │   │       │   └── Program.cs
            │   │       ├── AboutVar.sln
            │   │       └── AboutVar.suo
            │   └── 40
            │       └── AboutLambda
            │           ├── AboutLambda
            │           │   ├── AboutLambda.csproj
            │           │   └── Program.cs
            │           ├── AboutLambda.sln
            │           └── AboutLambda.suo
            ├── 7
            │   ├── 01
            │   │   └── AboutMDI
            │   │       ├── AboutMDI
            │   │       │   ├── AboutMDI.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── Form2.cs
            │   │       │   ├── Form2.Designer.cs
            │   │       │   ├── Form2.resx
            │   │       │   ├── Form3.cs
            │   │       │   ├── Form3.Designer.cs
            │   │       │   ├── Form3.resx
            │   │       │   ├── Form4.cs
            │   │       │   ├── Form4.Designer.cs
            │   │       │   ├── Form4.resx
            │   │       │   └── Program.cs
            │   │       ├── AboutMDI.sln
            │   │       └── AboutMDI.suo
            │   ├── 02
            │   │   └── AboutDialog
            │   │       ├── AboutDialog
            │   │       │   ├── AboutDialog.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── Form2.cs
            │   │       │   ├── Form2.Designer.cs
            │   │       │   ├── Form2.resx
            │   │       │   ├── Form3.cs
            │   │       │   ├── Form3.Designer.cs
            │   │       │   ├── Form3.resx
            │   │       │   └── Program.cs
            │   │       ├── AboutDialog.sln
            │   │       └── AboutDialog.suo
            │   ├── 03
            │   │   └── InheritForm
            │   │       ├── InheritForm
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── Form2.cs
            │   │       │   ├── Form2.Designer.cs
            │   │       │   ├── Form2.resx
            │   │       │   ├── InheritForm.csproj
            │   │       │   └── Program.cs
            │   │       ├── InheritForm.sln
            │   │       ├── InheritForm.suo
            │   │       └── ModifyProperty
            │   │           ├── Form1.cs
            │   │           ├── Form1.Designer.cs
            │   │           ├── Form1.resx
            │   │           ├── Form2.cs
            │   │           ├── Form2.Designer.cs
            │   │           ├── Form2.resx
            │   │           ├── ModifyProperty.csproj
            │   │           └── Program.cs
            │   ├── 04
            │   │   └── CustomShowFormat
            │   │       ├── CustomShowFormat
            │   │       │   ├── CustomShowFormat.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   └── Program.cs
            │   │       ├── CustomShowFormat.sln
            │   │       └── CustomShowFormat.suo
            │   ├── 05
            │   │   └── ExecuteAsynchronismFunction
            │   │       ├── ExecuteAsynchronismFunction
            │   │       │   ├── ExecuteAsynchronismFunction.csproj
            │   │       │   ├── Form1.resx
            │   │       │   ├── frmBackgroundWorker.cs
            │   │       │   ├── frmBackgroundWorker.designer.cs
            │   │       │   ├── frmBackgroundWorker.resx
            │   │       │   └── Program.cs
            │   │       ├── ExecuteAsynchronismFunction.sln
            │   │       └── ExecuteAsynchronismFunction.suo
            │   ├── 06
            │   │   └── AboutErrorProvider
            │   │       ├── AboutErrorProvider
            │   │       │   ├── AboutErrorProvider.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   └── Program.cs
            │   │       ├── AboutErrorProvider.sln
            │   │       └── AboutErrorProvider.suo
            │   ├── 07
            │   │   └── AboutHelpProvider
            │   │       ├── AboutHelpProvider
            │   │       │   ├── AboutHelpProvider.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── helpPage.htm
            │   │       │   └── Program.cs
            │   │       ├── AboutHelpProvider.sln
            │   │       └── AboutHelpProvider.suo
            │   ├── 08
            │   │   └── ComplexControl
            │   │       ├── ComplexControl
            │   │       │   ├── ComplexControl.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── Program.cs
            │   │       │   ├── UserControl1.cs
            │   │       │   ├── UserControl1.Designer.cs
            │   │       │   └── UserControl1.resx
            │   │       ├── ComplexControl.sln
            │   │       └── ComplexControl.suo
            │   ├── 09
            │   │   └── ExtendControl
            │   │       ├── ExtendControl
            │   │       │   ├── CustomTextBox.cs
            │   │       │   ├── CustomTextBox.Designer.cs
            │   │       │   ├── CustomTextBox.resx
            │   │       │   ├── ExtendControl.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   └── Program.cs
            │   │       ├── ExtendControl.sln
            │   │       └── ExtendControl.suo
            │   ├── 10
            │   │   └── CustomControl
            │   │       ├── CustomControl
            │   │       │   ├── CustomControl.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   ├── MymControl.cs
            │   │       │   ├── MymControl.Designer.cs
            │   │       │   └── Program.cs
            │   │       ├── CustomControl.sln
            │   │       └── CustomControl.suo
            │   └── database
            │       ├── db_07_Data.MDF
            │       └── db_07_Log.LDF
            ├── 8
            │   ├── 01
            │   │   └── AboutFile
            │   │       ├── AboutFile
            │   │       │   ├── AboutFile.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   └── Program.cs
            │   │       ├── AboutFile.sln
            │   │       └── AboutFile.suo
            │   ├── 02
            │   │   └── AboutFileInfo
            │   │       ├── AboutFileInfo
            │   │       │   ├── AboutFileInfo.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   └── Program.cs
            │   │       ├── AboutFileInfo.sln
            │   │       └── AboutFileInfo.suo
            │   ├── 03
            │   │   └── AboutDirectory
            │   │       ├── AboutDirectory
            │   │       │   ├── AboutDirectory.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   └── Program.cs
            │   │       ├── AboutDirectory.sln
            │   │       └── AboutDirectory.suo
            │   ├── 04
            │   │   └── AboutDirectoryInfo
            │   │       ├── AboutDirectoryInfo
            │   │       │   ├── AboutDirectoryInfo.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   └── Program.cs
            │   │       ├── AboutDirectoryInfo.sln
            │   │       └── AboutDirectoryInfo.suo
            │   ├── 05
            │   │   └── AboutFileStream
            │   │       ├── AboutFileStream.sln
            │   │       ├── AboutFileStream.suo
            │   │       ├── ReadFile
            │   │       │   ├── Program.cs
            │   │       │   └── ReadFile.csproj
            │   │       └── WriteFile
            │   │           ├── Program.cs
            │   │           └── WriteFile.csproj
            │   ├── 06
            │   │   └── AboutBufferedStream
            │   │       ├── AboutBufferedStream
            │   │       │   ├── AboutBufferedStream.csproj
            │   │       │   └── Program.cs
            │   │       ├── AboutBufferedStream.sln
            │   │       └── AboutBufferedStream.suo
            │   ├── 07
            │   │   └── StreamReaderAndStreamWriter
            │   │       ├── AboutStreamReader
            │   │       │   ├── AboutStreamReader.csproj
            │   │       │   └── Program.cs
            │   │       ├── AboutStreamWriter
            │   │       │   ├── AboutStreamWriter.csproj
            │   │       │   └── Program.cs
            │   │       ├── StreamReaderAndStreamWriter.sln
            │   │       └── StreamReaderAndStreamWriter.suo
            │   ├── 08
            │   │   └── DrawByOnPaint
            │   │       ├── DrawByOnPaint
            │   │       │   ├── DrawByOnPaint.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   └── Program.cs
            │   │       ├── DrawByOnPaint.sln
            │   │       └── DrawByOnPaint.suo
            │   ├── 09
            │   │   └── AboutDoubleBuffer
            │   │       ├── AboutDoubleBuffer
            │   │       │   ├── AboutDoubleBuffer.csproj
            │   │       │   ├── Form1.cs
            │   │       │   ├── Form1.Designer.cs
            │   │       │   ├── Form1.resx
            │   │       │   └── Program.cs
            │   │       ├── AboutDoubleBuffer.sln
            │   │       └── AboutDoubleBuffer.suo
            │   └── 10
            │       └── AboutClipRectangle
            │           ├── AboutClipRectangle
            │           │   ├── AboutClipRectangle.csproj
            │           │   ├── Form1.cs
            │           │   ├── Form1.Designer.cs
            │           │   ├── Form1.resx
            │           │   └── Program.cs
            │           ├── AboutClipRectangle.sln
            │           └── AboutClipRectangle.suo
            └── 9
                ├── 01
                │   └── RunThreadByAsyncDelegate
                │       ├── RunThreadByAsyncDelegate
                │       │   ├── Program.cs
                │       │   └── RunThreadByAsyncDelegate.csproj
                │       ├── RunThreadByAsyncDelegate.sln
                │       └── RunThreadByAsyncDelegate.suo
                ├── 02
                │   └── RaceCondition
                │       ├── RaceCondition
                │       │   ├── Program.cs
                │       │   └── RaceCondition.csproj
                │       ├── RaceCondition.sln
                │       └── RaceCondition.suo
                ├── 03
                │   └── UseLock
                │       ├── UseLock
                │       │   ├── Program.cs
                │       │   └── UseLock.csproj
                │       ├── UseLock.sln
                │       └── UseLock.suo
                ├── 04
                │   └── UseMonitorAndMutex
                │       ├── UseMonitor
                │       │   ├── Program.cs
                │       │   └── UseMonitor.csproj
                │       ├── UseMonitorAndMutex.sln
                │       ├── UseMonitorAndMutex.suo
                │       └── UseMutex
                │           ├── Program.cs
                │           └── UseMutex.csproj
                ├── 05
                │   └── DeadLock
                │       ├── DeadLock
                │       │   ├── DeadLock.csproj
                │       │   └── Program.cs
                │       ├── DeadLock.sln
                │       └── DeadLock.suo
                ├── 06
                │   └── AboutThreadPool
                │       ├── AboutThreadPool
                │       │   ├── AboutThreadPool.csproj
                │       │   └── Program.cs
                │       ├── AboutThreadPool.sln
                │       └── AboutThreadPool.suo
                ├── 07
                │   └── AboutNetBase
                │       ├── AboutDns
                │       │   ├── AboutDns.csproj
                │       │   ├── Form1.cs
                │       │   ├── Form1.Designer.cs
                │       │   ├── Form1.resx
                │       │   └── Program.cs
                │       ├── AboutIPAddress
                │       │   ├── AboutIPAddress.csproj
                │       │   ├── Form1.cs
                │       │   ├── Form1.Designer.cs
                │       │   ├── Form1.resx
                │       │   └── Program.cs
                │       ├── AboutIPEndPoint
                │       │   ├── AboutIPEndPoint.csproj
                │       │   ├── Form1.cs
                │       │   ├── Form1.Designer.cs
                │       │   ├── Form1.resx
                │       │   └── Program.cs
                │       ├── AboutNetBase.sln
                │       └── AboutNetBase.suo
                └── 08
                    └── AboutCommunications
                        ├── AboutCommunications.sln
                        ├── AboutCommunications.suo
                        ├── AboutSocket
                        │   ├── AboutSocket.csproj
                        │   ├── Form1.cs
                        │   ├── Form1.Designer.cs
                        │   ├── Form1.resx
                        │   └── Program.cs
                        └── AboutTcp
                            ├── AboutTcp.csproj
                            ├── Form1.cs
                            ├── Form1.Designer.cs
                            ├── Form1.resx
                            └── Program.cs

1679 directories, 3375 files

标签: 开发 C#

实例下载地址

C#开发之道

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警