实例介绍
【实例截图】
【核心代码】
.
├── 课件
│ ├── Ch00 软件开发架构与.NET框架.ppt
│ ├── Ch01 C#概述.ppt
│ ├── Ch02 C#程序设计基础.ppt
│ ├── Ch03 C#程序的流程控制.ppt
│ ├── Ch04 面向对象程序设计入门.ppt
│ ├── Ch05 面向对象高级程序设计.ppt
│ ├── Ch06 集合、索引器与泛型.ppt
│ ├── Ch07 程序调试与异常处理.ppt
│ ├── Ch09 Windows程序的界面设计.ppt
│ ├── Ch10 C#数据库编程技术.ppt
│ ├── Ch11 文件操作与编程技术.ppt
│ ├── Ch12 高级数据访问与处理技术.ppt
│ ├── Ch13 网络应用编程技术.ppt
│ └── Ch14 多媒体编程技术.ppt
├── 源代码
│ ├── Example9_RichTextBox
│ │ ├── Example9_RichTextBox
│ │ │ ├── Example9_RichTextBox.csproj
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── Example9_RichTextBox.exe
│ │ │ │ ├── Example9_RichTextBox.pdb
│ │ │ │ ├── Example9_RichTextBox.vshost.exe
│ │ │ │ └── Example9_RichTextBox.vshost.exe.manifest
│ │ │ └── obj
│ │ │ └── x86
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── Example9_RichTextBox.Form1.resources
│ │ │ ├── Example9_RichTextBox.Properties.Resources.resources
│ │ │ ├── Example9_RichTextBox.csproj.FileListAbsolute.txt
│ │ │ ├── Example9_RichTextBox.exe
│ │ │ ├── Example9_RichTextBox.pdb
│ │ │ ├── GenerateResource.read.1.tlog
│ │ │ ├── GenerateResource.write.1.tlog
│ │ │ └── TempPE
│ │ ├── Example9_RichTextBox.sln
│ │ └── Example9_RichTextBox.suo
│ ├── Exp10
│ │ ├── Exp10
│ │ │ ├── Exp10.csproj
│ │ │ ├── Exp10_1.Designer.cs
│ │ │ ├── Exp10_1.cs
│ │ │ ├── Exp10_1.resx
│ │ │ ├── Exp10_2.Designer.cs
│ │ │ ├── Exp10_2.cs
│ │ │ ├── Exp10_2.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── bin
│ │ │ │ ├── Debug
│ │ │ │ │ ├── Exp10.exe
│ │ │ │ │ ├── Exp10.pdb
│ │ │ │ │ ├── Exp10.vshost.exe
│ │ │ │ │ └── Exp10.vshost.exe.manifest
│ │ │ │ └── Release
│ │ │ └── obj
│ │ │ └── x86
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── Exp10.Exp10_1.resources
│ │ │ ├── Exp10.Exp10_2.resources
│ │ │ ├── Exp10.Properties.Resources.resources
│ │ │ ├── Exp10.csproj.FileListAbsolute.txt
│ │ │ ├── Exp10.exe
│ │ │ ├── Exp10.pdb
│ │ │ ├── GenerateResource.read.1.tlog
│ │ │ ├── GenerateResource.write.1.tlog
│ │ │ └── TempPE
│ │ ├── Exp10.sln
│ │ └── Exp10.suo
│ ├── HelloWeb
│ │ ├── HelloWeb.aspx
│ │ ├── HelloWeb.aspx.cs
│ │ └── web.config
│ ├── HelloWin
│ │ ├── HelloWin
│ │ │ ├── HelloFrm.Designer.cs
│ │ │ ├── HelloFrm.cs
│ │ │ ├── HelloFrm.resx
│ │ │ ├── HelloWin.csproj
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── HelloWin.exe
│ │ │ │ ├── HelloWin.pdb
│ │ │ │ └── HelloWin.vshost.exe
│ │ │ └── obj
│ │ │ └── x86
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── GenerateResource.read.1.tlog
│ │ │ ├── GenerateResource.write.1.tlog
│ │ │ ├── HelloWin.HelloFrm.resources
│ │ │ ├── HelloWin.Properties.Resources.resources
│ │ │ ├── HelloWin.csproj.FileListAbsolute.txt
│ │ │ ├── HelloWin.exe
│ │ │ ├── HelloWin.pdb
│ │ │ └── TempPE
│ │ ├── HelloWin.sln
│ │ └── HelloWin.suo
│ ├── HelloWorld
│ │ ├── HelloWorld
│ │ │ ├── HelloWorld.cs
│ │ │ ├── HelloWorld.csproj
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── HelloWorld.exe
│ │ │ │ ├── HelloWorld.pdb
│ │ │ │ ├── HelloWorld.vshost.exe
│ │ │ │ └── HelloWorld.vshost.exe.manifest
│ │ │ └── obj
│ │ │ └── x86
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── HelloWorld.csproj.FileListAbsolute.txt
│ │ │ ├── HelloWorld.exe
│ │ │ ├── HelloWorld.pdb
│ │ │ └── TempPE
│ │ ├── HelloWorld.sln
│ │ └── HelloWorld.suo
│ ├── MyAccounting
│ │ └── MyAccounting
│ │ ├── MyAccounting
│ │ │ ├── About.Designer.cs
│ │ │ ├── About.cs
│ │ │ ├── About.resx
│ │ │ ├── AddExpenditure.Designer.cs
│ │ │ ├── AddExpenditure.cs
│ │ │ ├── AddExpenditure.resx
│ │ │ ├── AddItems.Designer.cs
│ │ │ ├── AddItems.cs
│ │ │ ├── AddItems.resx
│ │ │ ├── Login.Designer.cs
│ │ │ ├── Login.cs
│ │ │ ├── Login.resx
│ │ │ ├── MainFrm.Designer.cs
│ │ │ ├── MainFrm.cs
│ │ │ ├── MainFrm.resx
│ │ │ ├── MyAccounting.csproj
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── SelectList.Designer.cs
│ │ │ ├── SelectList.cs
│ │ │ ├── SelectList.resx
│ │ │ ├── UpdateExpenditure.Designer.cs
│ │ │ ├── UpdateExpenditure.cs
│ │ │ ├── UpdateExpenditure.resx
│ │ │ ├── bin
│ │ │ │ ├── Debug
│ │ │ │ │ ├── MyAccounting.exe
│ │ │ │ │ ├── MyAccounting.pdb
│ │ │ │ │ ├── MyAccounting.vshost.exe
│ │ │ │ │ └── MyAccounting.vshost.exe.manifest
│ │ │ │ └── Release
│ │ │ └── obj
│ │ │ └── x86
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── GenerateResource.read.1.tlog
│ │ │ ├── GenerateResource.write.1.tlog
│ │ │ ├── MyAccounting.About.resources
│ │ │ ├── MyAccounting.AddExpenditure.resources
│ │ │ ├── MyAccounting.AddItems.resources
│ │ │ ├── MyAccounting.Login.resources
│ │ │ ├── MyAccounting.MainFrm.resources
│ │ │ ├── MyAccounting.Properties.Resources.resources
│ │ │ ├── MyAccounting.SelectList.resources
│ │ │ ├── MyAccounting.UpdateExpenditure.resources
│ │ │ ├── MyAccounting.csproj.FileListAbsolute.txt
│ │ │ ├── MyAccounting.exe
│ │ │ ├── MyAccounting.pdb
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ └── TempPE
│ │ ├── MyAccounting.sln
│ │ └── MyAccounting.suo
│ ├── MyFirstApp
│ │ ├── MyFirstApp
│ │ │ ├── MyFirstApp.csproj
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── MyFirstApp.exe
│ │ │ │ ├── MyFirstApp.pdb
│ │ │ │ ├── MyFirstApp.vshost.exe
│ │ │ │ └── MyFirstApp.vshost.exe.manifest
│ │ │ └── obj
│ │ │ └── x86
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── MyFirstApp.csproj.FileListAbsolute.txt
│ │ │ ├── MyFirstApp.exe
│ │ │ └── TempPE
│ │ ├── MyFirstApp.sln
│ │ └── MyFirstApp.suo
│ ├── Test13
│ │ ├── Client
│ │ │ ├── Client.csproj
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── Client.exe
│ │ │ │ ├── Client.pdb
│ │ │ │ ├── Client.vshost.exe
│ │ │ │ └── Client.vshost.exe.manifest
│ │ │ └── obj
│ │ │ └── x86
│ │ │ └── Debug
│ │ │ ├── Client.Form1.resources
│ │ │ ├── Client.Properties.Resources.resources
│ │ │ ├── Client.csproj.FileListAbsolute.txt
│ │ │ ├── Client.exe
│ │ │ ├── Client.pdb
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── GenerateResource.read.1.tlog
│ │ │ ├── GenerateResource.write.1.tlog
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ └── TempPE
│ │ ├── Exp13
│ │ │ ├── Exp13.csproj
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── Exp13.exe
│ │ │ │ ├── Exp13.pdb
│ │ │ │ ├── Exp13.vshost.exe
│ │ │ │ └── Exp13.vshost.exe.manifest
│ │ │ ├── exp13_2.Designer.cs
│ │ │ ├── exp13_2.cs
│ │ │ ├── exp13_2.resx
│ │ │ └── obj
│ │ │ └── x86
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── Exp13.Exp13_2.resources
│ │ │ ├── Exp13.Form1.resources
│ │ │ ├── Exp13.Properties.Resources.resources
│ │ │ ├── Exp13.csproj.FileListAbsolute.txt
│ │ │ ├── Exp13.exe
│ │ │ ├── Exp13.pdb
│ │ │ ├── GenerateResource.read.1.tlog
│ │ │ ├── GenerateResource.write.1.tlog
│ │ │ └── TempPE
│ │ ├── Server
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── Server.csproj
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── Server.exe
│ │ │ │ ├── Server.pdb
│ │ │ │ ├── Server.vshost.exe
│ │ │ │ └── Server.vshost.exe.manifest
│ │ │ └── obj
│ │ │ └── x86
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── Server.csproj.FileListAbsolute.txt
│ │ │ ├── Server.exe
│ │ │ ├── Server.pdb
│ │ │ └── TempPE
│ │ ├── Server_1
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── ServerFrm.Designer.cs
│ │ │ ├── ServerFrm.cs
│ │ │ ├── ServerFrm.resx
│ │ │ ├── Server_1.csproj
│ │ │ ├── Server_1.csproj.user
│ │ │ ├── bin
│ │ │ │ ├── Debug
│ │ │ │ │ ├── Server.exe
│ │ │ │ │ ├── Server.pdb
│ │ │ │ │ └── Server_1.vshost.exe
│ │ │ │ └── Release
│ │ │ └── obj
│ │ │ └── x86
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── GenerateResource.read.1.tlog
│ │ │ ├── GenerateResource.write.1.tlog
│ │ │ ├── Server.Properties.Resources.resources
│ │ │ ├── Server.ServerFrm.resources
│ │ │ ├── Server.csproj.FileListAbsolute.txt
│ │ │ ├── Server.exe
│ │ │ ├── Server.pdb
│ │ │ └── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ ├── TcpClient
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── TcpClients.csproj
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── TcpClient.exe
│ │ │ │ ├── TcpClient.pdb
│ │ │ │ ├── TcpClient.vshost.exe
│ │ │ │ └── TcpClient.vshost.exe.manifest
│ │ │ └── obj
│ │ │ └── x86
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── TcpClient.exe
│ │ │ ├── TcpClient.pdb
│ │ │ ├── TcpClients.csproj.FileListAbsolute.txt
│ │ │ └── TempPE
│ │ ├── TcpServer
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── TcpServer.csproj
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── TcpServer.exe
│ │ │ │ ├── TcpServer.pdb
│ │ │ │ ├── TcpServer.vshost.exe
│ │ │ │ └── TcpServer.vshost.exe.manifest
│ │ │ └── obj
│ │ │ └── x86
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ ├── TcpServer.csproj.FileListAbsolute.txt
│ │ │ ├── TcpServer.exe
│ │ │ ├── TcpServer.pdb
│ │ │ └── TempPE
│ │ ├── Test13
│ │ │ ├── MulticastFrm.Designer.cs
│ │ │ ├── MulticastFrm.cs
│ │ │ ├── MulticastFrm.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Test13.csproj
│ │ │ ├── Test13_1.Designer.cs
│ │ │ ├── Test13_1.cs
│ │ │ ├── Test13_1.resx
│ │ │ ├── Test13_2.Designer.cs
│ │ │ ├── Test13_2.cs
│ │ │ ├── Test13_2.resx
│ │ │ ├── Test13_3.Designer.cs
│ │ │ ├── Test13_3.cs
│ │ │ ├── Test13_3.resx
│ │ │ ├── Test13_3_2.Designer.cs
│ │ │ ├── Test13_3_2.cs
│ │ │ ├── Test13_3_2.resx
│ │ │ ├── Test13_4.Designer.cs
│ │ │ ├── Test13_4.cs
│ │ │ ├── Test13_4.resx
│ │ │ ├── Test13_8.Designer.cs
│ │ │ ├── Test13_8.cs
│ │ │ ├── Test13_8.resx
│ │ │ ├── Test13_9.Designer.cs
│ │ │ ├── Test13_9.cs
│ │ │ ├── Test13_9.resx
│ │ │ ├── bin
│ │ │ │ ├── Debug
│ │ │ │ │ ├── Test13.exe
│ │ │ │ │ ├── Test13.pdb
│ │ │ │ │ └── Test13.vshost.exe
│ │ │ │ └── Release
│ │ │ └── obj
│ │ │ └── x86
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── GenerateResource.read.1.tlog
│ │ │ ├── GenerateResource.write.1.tlog
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ ├── TempPE
│ │ │ ├── Test13.MulticastFrm.resources
│ │ │ ├── Test13.Properties.Resources.resources
│ │ │ ├── Test13.Test13_1.resources
│ │ │ ├── Test13.Test13_2.resources
│ │ │ ├── Test13.Test13_3.resources
│ │ │ ├── Test13.Test13_3_2.resources
│ │ │ ├── Test13.Test13_4.resources
│ │ │ ├── Test13.Test13_8.resources
│ │ │ ├── Test13.Test13_9.resources
│ │ │ ├── Test13.csproj.FileListAbsolute.txt
│ │ │ ├── Test13.exe
│ │ │ └── Test13.pdb
│ │ ├── Test13.sln
│ │ └── Test13.suo
│ ├── Test1_3
│ │ ├── Test1_3
│ │ │ ├── HelloFrm.Designer.cs
│ │ │ ├── HelloFrm.cs
│ │ │ ├── HelloFrm.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Test1_3.csproj
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── Test1_3.exe
│ │ │ │ ├── Test1_3.pdb
│ │ │ │ ├── Test1_3.vshost.exe
│ │ │ │ └── Test1_3.vshost.exe.manifest
│ │ │ └── obj
│ │ │ └── x86
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── GenerateResource.read.1.tlog
│ │ │ ├── GenerateResource.write.1.tlog
│ │ │ ├── TempPE
│ │ │ ├── Test1_3.HelloFrm.resources
│ │ │ ├── Test1_3.Properties.Resources.resources
│ │ │ ├── Test1_3.csproj.FileListAbsolute.txt
│ │ │ ├── Test1_3.exe
│ │ │ └── Test1_3.pdb
│ │ ├── Test1_3.sln
│ │ └── Test1_3.suo
│ ├── Test3_4
│ │ ├── Test3_4
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Test3_4.Designer.cs
│ │ │ ├── Test3_4.cs
│ │ │ ├── Test3_4.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test3_4.exe
│ │ │ │ ├── test3_4.pdb
│ │ │ │ └── test3_4.vshost.exe
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ │ ├── Test3_4.csproj.FileListAbsolute.txt
│ │ │ │ ├── test3_4.Properties.Resources.resources
│ │ │ │ ├── test3_4.Test3_4.resources
│ │ │ │ ├── test3_4.exe
│ │ │ │ └── test3_4.pdb
│ │ │ └── test3_4.csproj
│ │ ├── Test3_4.sln
│ │ └── Test3_4.suo
│ ├── Test6
│ │ └── Test6
│ │ ├── Test6
│ │ │ ├── Exp6_1.Designer.cs
│ │ │ ├── Exp6_1.cs
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Test6.csproj
│ │ │ ├── Test6_1.Designer.cs
│ │ │ ├── Test6_1.cs
│ │ │ ├── Test6_1.resx
│ │ │ ├── Test6_2.Designer.cs
│ │ │ ├── Test6_2.cs
│ │ │ ├── Test6_2.resx
│ │ │ ├── Test6_3.Designer.cs
│ │ │ ├── Test6_3.cs
│ │ │ ├── Test6_3.resx
│ │ │ ├── Test6_4.Designer.cs
│ │ │ ├── Test6_4.cs
│ │ │ ├── Test6_4.resx
│ │ │ ├── bin
│ │ │ │ ├── Debug
│ │ │ │ │ ├── Test6.exe
│ │ │ │ │ ├── Test6.pdb
│ │ │ │ │ ├── Test6.vshost.exe
│ │ │ │ │ └── Test6.vshost.exe.manifest
│ │ │ │ └── Release
│ │ │ └── obj
│ │ │ └── x86
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── GenerateResource.read.1.tlog
│ │ │ ├── GenerateResource.write.1.tlog
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ ├── TempPE
│ │ │ ├── Test6.Properties.Resources.resources
│ │ │ ├── Test6.Test6_1.resources
│ │ │ ├── Test6.Test6_2.resources
│ │ │ ├── Test6.Test6_3.resources
│ │ │ ├── Test6.Test6_4.resources
│ │ │ ├── Test6.csproj.FileListAbsolute.txt
│ │ │ ├── Test6.exe
│ │ │ └── Test6.pdb
│ │ ├── Test6.sln
│ │ └── Test6.suo
│ ├── Test9
│ │ └── Test9
│ │ ├── AddressList
│ │ │ ├── AddressList.csproj
│ │ │ ├── MainFrm.Designer.cs
│ │ │ ├── MainFrm.cs
│ │ │ ├── MainFrm.resx
│ │ │ ├── NewContact.Designer.cs
│ │ │ ├── NewContact.cs
│ │ │ ├── NewContact.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── bin
│ │ │ │ ├── Debug
│ │ │ │ │ ├── AddressList.exe
│ │ │ │ │ ├── AddressList.pdb
│ │ │ │ │ ├── AddressList.vshost.exe
│ │ │ │ │ └── AddressList.vshost.exe.manifest
│ │ │ │ └── Release
│ │ │ └── obj
│ │ │ └── x86
│ │ │ └── Debug
│ │ │ ├── AddressList.MainFrm.resources
│ │ │ ├── AddressList.NewContact.resources
│ │ │ ├── AddressList.Properties.Resources.resources
│ │ │ ├── AddressList.csproj.FileListAbsolute.txt
│ │ │ ├── AddressList.exe
│ │ │ ├── AddressList.pdb
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── GenerateResource.read.1.tlog
│ │ │ ├── GenerateResource.write.1.tlog
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ └── TempPE
│ │ ├── Test9
│ │ │ ├── Exp9_1.Designer.cs
│ │ │ ├── Exp9_1.cs
│ │ │ ├── Exp9_1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Test9.csproj
│ │ │ ├── Test9_1.Designer.cs
│ │ │ ├── Test9_1.cs
│ │ │ ├── Test9_1.resx
│ │ │ ├── Test9_2.Designer.cs
│ │ │ ├── Test9_2.cs
│ │ │ ├── Test9_2.resx
│ │ │ ├── Test9_3.Designer.cs
│ │ │ ├── Test9_3.cs
│ │ │ ├── Test9_3.resx
│ │ │ ├── Test9_4.Designer.cs
│ │ │ ├── Test9_4.cs
│ │ │ ├── Test9_4.resx
│ │ │ ├── Test9_5.Designer.cs
│ │ │ ├── Test9_5.cs
│ │ │ ├── Test9_5.resx
│ │ │ ├── Test9_6.Designer.cs
│ │ │ ├── Test9_6.cs
│ │ │ ├── Test9_6.resx
│ │ │ ├── Test9_7.Designer.cs
│ │ │ ├── Test9_7.cs
│ │ │ ├── Test9_7.resx
│ │ │ ├── bin
│ │ │ │ ├── Debug
│ │ │ │ │ ├── Test9.exe
│ │ │ │ │ ├── Test9.pdb
│ │ │ │ │ ├── Test9.vshost.exe
│ │ │ │ │ └── Test9.vshost.exe.manifest
│ │ │ │ └── Release
│ │ │ └── obj
│ │ │ └── x86
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── GenerateResource.read.1.tlog
│ │ │ ├── GenerateResource.write.1.tlog
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ ├── TempPE
│ │ │ ├── Test9.Exp9_1.resources
│ │ │ ├── Test9.ModelForm.resources
│ │ │ ├── Test9.Properties.Resources.resources
│ │ │ ├── Test9.Test9_2.resources
│ │ │ ├── Test9.Test9_3.resources
│ │ │ ├── Test9.Test9_4.resources
│ │ │ ├── Test9.Test9_6.resources
│ │ │ ├── Test9.Test9_7.resources
│ │ │ ├── Test9.csproj.FileListAbsolute.txt
│ │ │ ├── Test9.exe
│ │ │ ├── Test9.pdb
│ │ │ └── Test9.test9_1.resources
│ │ ├── Test9.sln
│ │ └── Test9.suo
│ ├── Test9_9
│ │ ├── Test9_9
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Form2.Designer.cs
│ │ │ ├── Form2.cs
│ │ │ ├── Form2.resx
│ │ │ ├── Form3.Designer.cs
│ │ │ ├── Form3.cs
│ │ │ ├── Form3.resx
│ │ │ ├── Form4.Designer.cs
│ │ │ ├── Form4.cs
│ │ │ ├── Form4.resx
│ │ │ ├── Form5.Designer.cs
│ │ │ ├── Form5.cs
│ │ │ ├── Form5.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Test9_9.csproj
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── Test9_9.exe
│ │ │ │ ├── Test9_9.pdb
│ │ │ │ ├── Test9_9.vshost.exe
│ │ │ │ └── Test9_9.vshost.exe.manifest
│ │ │ └── obj
│ │ │ └── x86
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── GenerateResource.read.1.tlog
│ │ │ ├── GenerateResource.write.1.tlog
│ │ │ ├── TempPE
│ │ │ ├── Test9_9.Form1.resources
│ │ │ ├── Test9_9.Form2.resources
│ │ │ ├── Test9_9.Form3.resources
│ │ │ ├── Test9_9.Form4.resources
│ │ │ ├── Test9_9.Form5.resources
│ │ │ ├── Test9_9.Properties.Resources.resources
│ │ │ ├── Test9_9.csproj.FileListAbsolute.txt
│ │ │ ├── Test9_9.exe
│ │ │ └── Test9_9.pdb
│ │ ├── Test9_9.sln
│ │ └── Test9_9.suo
│ ├── test10_1
│ │ ├── test10_1
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test10_1.exe
│ │ │ │ ├── test10_1.pdb
│ │ │ │ ├── test10_1.vshost.exe
│ │ │ │ └── test10_1.vshost.exe.manifest
│ │ │ ├── frmConnDB.Designer.cs
│ │ │ ├── frmConnDB.cs
│ │ │ ├── frmConnDB.resx
│ │ │ ├── frmLogin.Designer.cs
│ │ │ ├── frmLogin.cs
│ │ │ ├── frmLogin.resx
│ │ │ ├── frmRelations.Designer.cs
│ │ │ ├── frmRelations.cs
│ │ │ ├── frmRelations.resx
│ │ │ ├── frmStudent.Designer.cs
│ │ │ ├── frmStudent.cs
│ │ │ ├── frmStudent.resx
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── ResolveAssemblyReference.cache
│ │ │ │ ├── TempPE
│ │ │ │ ├── test10_1.Properties.Resources.resources
│ │ │ │ ├── test10_1.csproj.FileListAbsolute.txt
│ │ │ │ ├── test10_1.csproj.ResolveComReference.cache
│ │ │ │ ├── test10_1.exe
│ │ │ │ ├── test10_1.frmConnDB.resources
│ │ │ │ ├── test10_1.frmLogin.resources
│ │ │ │ ├── test10_1.frmRelations.resources
│ │ │ │ ├── test10_1.frmStudent.resources
│ │ │ │ └── test10_1.pdb
│ │ │ └── test10_1.csproj
│ │ ├── test10_1.sln
│ │ └── test10_1.suo
│ ├── test11_1
│ │ ├── test11_1
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Test11_1.Designer.cs
│ │ │ ├── Test11_1.cs
│ │ │ ├── Test11_1.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test11_1.exe
│ │ │ │ ├── test11_1.pdb
│ │ │ │ ├── test11_1.vshost.exe
│ │ │ │ └── test11_1.vshost.exe.manifest
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test11_1.Properties.Resources.resources
│ │ │ │ ├── test11_1.Test11_1.resources
│ │ │ │ ├── test11_1.csproj.FileListAbsolute.txt
│ │ │ │ ├── test11_1.exe
│ │ │ │ └── test11_1.pdb
│ │ │ └── test11_1.csproj
│ │ ├── test11_1.sln
│ │ └── test11_1.suo
│ ├── test11_2
│ │ ├── test11_2
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Test11_2.Designer.cs
│ │ │ ├── Test11_2.cs
│ │ │ ├── Test11_2.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test11_2.exe
│ │ │ │ ├── test11_2.pdb
│ │ │ │ ├── test11_2.vshost.exe
│ │ │ │ └── test11_2.vshost.exe.manifest
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test11_2.Properties.Resources.resources
│ │ │ │ ├── test11_2.Test11_2.resources
│ │ │ │ ├── test11_2.csproj.FileListAbsolute.txt
│ │ │ │ ├── test11_2.exe
│ │ │ │ └── test11_2.pdb
│ │ │ └── test11_2.csproj
│ │ ├── test11_2.sln
│ │ └── test11_2.suo
│ ├── test11_4
│ │ ├── test11_4
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Test11_4.Designer.cs
│ │ │ ├── Test11_4.cs
│ │ │ ├── Test11_4.resx
│ │ │ ├── app.config
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test11_4.exe
│ │ │ │ ├── test11_4.exe.config
│ │ │ │ ├── test11_4.pdb
│ │ │ │ ├── test11_4.vshost.exe
│ │ │ │ ├── test11_4.vshost.exe.config
│ │ │ │ └── test11_4.vshost.exe.manifest
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource-ResGen.read.1.tlog
│ │ │ │ ├── GenerateResource-ResGen.write.1.tlog
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ │ ├── test11_2.Properties.Resources.resources
│ │ │ │ ├── test11_4.Test11_4.resources
│ │ │ │ ├── test11_4.csproj.FileListAbsolute.txt
│ │ │ │ ├── test11_4.exe
│ │ │ │ └── test11_4.pdb
│ │ │ └── test11_4.csproj
│ │ ├── test11_4.sln
│ │ └── test11_4.suo
│ ├── test11_6
│ │ ├── test11_6
│ │ │ ├── DocForm.Designer.cs
│ │ │ ├── DocForm.cs
│ │ │ ├── DocForm.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── SetDialog.Designer.cs
│ │ │ ├── SetDialog.cs
│ │ │ ├── SetDialog.resx
│ │ │ ├── Test11_6.Designer.cs
│ │ │ ├── Test11_6.cs
│ │ │ ├── Test11_6.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test11_6.exe
│ │ │ │ ├── test11_6.pdb
│ │ │ │ ├── test11_6.vshost.exe
│ │ │ │ └── test11_6.vshost.exe.manifest
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test11_6.DocForm.resources
│ │ │ │ ├── test11_6.Properties.Resources.resources
│ │ │ │ ├── test11_6.SetDialog.resources
│ │ │ │ ├── test11_6.Test11_6.resources
│ │ │ │ ├── test11_6.csproj.FileListAbsolute.txt
│ │ │ │ ├── test11_6.exe
│ │ │ │ └── test11_6.pdb
│ │ │ └── test11_6.csproj
│ │ ├── test11_6.sln
│ │ └── test11_6.suo
│ ├── test12_2
│ │ ├── test12_2
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Test12_2.Designer.cs
│ │ │ ├── Test12_2.cs
│ │ │ ├── Test12_2.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test12_2.exe
│ │ │ │ ├── test12_2.pdb
│ │ │ │ ├── test12_2.vshost.exe
│ │ │ │ └── test12_2.vshost.exe.manifest
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test12_2.Properties.Resources.resources
│ │ │ │ ├── test12_2.Test12_2.resources
│ │ │ │ ├── test12_2.csproj.FileListAbsolute.txt
│ │ │ │ ├── test12_2.exe
│ │ │ │ └── test12_2.pdb
│ │ │ └── test12_2.csproj
│ │ ├── test12_2.sln
│ │ └── test12_2.suo
│ ├── test12_3
│ │ ├── test12_3
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Test12_3.cs
│ │ │ ├── Test12_3.designer.cs
│ │ │ ├── Test12_3.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test12_3.exe
│ │ │ │ ├── test12_3.pdb
│ │ │ │ ├── test12_3.vshost.exe
│ │ │ │ └── test12_3.vshost.exe.manifest
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test12_3.Properties.Resources.resources
│ │ │ │ ├── test12_3.Test12_3.resources
│ │ │ │ ├── test12_3.csproj.FileListAbsolute.txt
│ │ │ │ ├── test12_3.exe
│ │ │ │ └── test12_3.pdb
│ │ │ └── test12_3.csproj
│ │ ├── test12_3.sln
│ │ └── test12_3.suo
│ ├── test12_4
│ │ ├── test12_4
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Test12_4.Designer.cs
│ │ │ ├── Test12_4.cs
│ │ │ ├── Test12_4.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test12_4.exe
│ │ │ │ ├── test12_4.pdb
│ │ │ │ ├── test12_4.vshost.exe
│ │ │ │ └── test12_4.vshost.exe.manifest
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── ResolveAssemblyReference.cache
│ │ │ │ ├── TempPE
│ │ │ │ ├── test12_4.Properties.Resources.resources
│ │ │ │ ├── test12_4.Test12_4.resources
│ │ │ │ ├── test12_4.csproj.FileListAbsolute.txt
│ │ │ │ ├── test12_4.exe
│ │ │ │ └── test12_4.pdb
│ │ │ └── test12_4.csproj
│ │ ├── test12_4.sln
│ │ └── test12_4.suo
│ ├── test12_5
│ │ ├── test12_5
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Test12_5.Designer.cs
│ │ │ ├── Test12_5.cs
│ │ │ ├── Test12_5.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test12_5.exe
│ │ │ │ ├── test12_5.pdb
│ │ │ │ └── test12_5.vshost.exe
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test12_5.Properties.Resources.resources
│ │ │ │ ├── test12_5.Test12_5.resources
│ │ │ │ ├── test12_5.csproj.FileListAbsolute.txt
│ │ │ │ ├── test12_5.exe
│ │ │ │ └── test12_5.pdb
│ │ │ └── test12_5.csproj
│ │ ├── test12_5.sln
│ │ └── test12_5.suo
│ ├── test12_6
│ │ ├── test12_6
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Test12_6.Designer.cs
│ │ │ ├── Test12_6.cs
│ │ │ ├── Test12_6.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test12_6.exe
│ │ │ │ ├── test12_6.pdb
│ │ │ │ └── test12_6.vshost.exe
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test12_6.Properties.Resources.resources
│ │ │ │ ├── test12_6.Test12_6.resources
│ │ │ │ ├── test12_6.csproj.FileListAbsolute.txt
│ │ │ │ ├── test12_6.exe
│ │ │ │ └── test12_6.pdb
│ │ │ └── test12_6.csproj
│ │ ├── test12_6.sln
│ │ └── test12_6.suo
│ ├── test12_7
│ │ ├── test12_7
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── DataSources
│ │ │ │ │ ├── AdventureworksDataContext.datasource
│ │ │ │ │ └── Product.datasource
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Test12_7.Designer.cs
│ │ │ ├── Test12_7.cs
│ │ │ ├── Test12_7.resx
│ │ │ ├── app.config
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test12_7.exe
│ │ │ │ ├── test12_7.exe.config
│ │ │ │ ├── test12_7.pdb
│ │ │ │ ├── test12_7.vshost.exe
│ │ │ │ └── test12_7.vshost.exe.config
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ │ ├── Adventureworks.designer.cs.dll
│ │ │ │ │ └── DataClasses1.designer.cs.dll
│ │ │ │ ├── test12_7.Properties.Resources.resources
│ │ │ │ ├── test12_7.Test12_7.resources
│ │ │ │ ├── test12_7.csproj.FileListAbsolute.txt
│ │ │ │ ├── test12_7.exe
│ │ │ │ └── test12_7.pdb
│ │ │ └── test12_7.csproj
│ │ ├── test12_7.sln
│ │ └── test12_7.suo
│ ├── test14_1
│ │ ├── test14_1
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Test14_1.Designer.cs
│ │ │ ├── Test14_1.cs
│ │ │ ├── Test14_1.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test14_1.exe
│ │ │ │ ├── test14_1.pdb
│ │ │ │ └── test14_1.vshost.exe
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test14_1.Properties.Resources.resources
│ │ │ │ ├── test14_1.Test14_1.resources
│ │ │ │ ├── test14_1.csproj.FileListAbsolute.txt
│ │ │ │ ├── test14_1.exe
│ │ │ │ └── test14_1.pdb
│ │ │ └── test14_1.csproj
│ │ ├── test14_1.sln
│ │ └── test14_1.suo
│ ├── test14_2
│ │ ├── test14_2
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Test14_2.Designer.cs
│ │ │ ├── Test14_2.cs
│ │ │ ├── Test14_2.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test14_2.exe
│ │ │ │ ├── test14_2.pdb
│ │ │ │ └── test14_2.vshost.exe
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test14_2.Properties.Resources.resources
│ │ │ │ ├── test14_2.Test14_2.resources
│ │ │ │ ├── test14_2.csproj.FileListAbsolute.txt
│ │ │ │ ├── test14_2.exe
│ │ │ │ └── test14_2.pdb
│ │ │ └── test14_2.csproj
│ │ ├── test14_2.sln
│ │ └── test14_2.suo
│ ├── test14_3
│ │ ├── test14_3
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Test14_3.Designer.cs
│ │ │ ├── Test14_3.cs
│ │ │ ├── Test14_3.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test14_3.exe
│ │ │ │ ├── test14_3.pdb
│ │ │ │ ├── test14_3.vshost.exe
│ │ │ │ └── test14_3.vshost.exe.manifest
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test14_3.Properties.Resources.resources
│ │ │ │ ├── test14_3.Test14_3.resources
│ │ │ │ ├── test14_3.csproj.FileListAbsolute.txt
│ │ │ │ ├── test14_3.exe
│ │ │ │ └── test14_3.pdb
│ │ │ └── test14_3.csproj
│ │ ├── test14_3.sln
│ │ └── test14_3.suo
│ ├── test14_4
│ │ ├── test14_4
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Test14_4.Designer.cs
│ │ │ ├── Test14_4.cs
│ │ │ ├── Test14_4.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test14_4.exe
│ │ │ │ ├── test14_4.pdb
│ │ │ │ └── test14_4.vshost.exe
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test14_4.Properties.Resources.resources
│ │ │ │ ├── test14_4.Test14_4.resources
│ │ │ │ ├── test14_4.csproj.FileListAbsolute.txt
│ │ │ │ ├── test14_4.exe
│ │ │ │ └── test14_4.pdb
│ │ │ └── test14_4.csproj
│ │ ├── test14_4.sln
│ │ └── test14_4.suo
│ ├── test14_5
│ │ ├── test14_5
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Test14_5.Designer.cs
│ │ │ ├── Test14_5.cs
│ │ │ ├── Test14_5.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── AxInterop.WMPLib.dll
│ │ │ │ ├── Interop.WMPLib.dll
│ │ │ │ ├── test14_5.exe
│ │ │ │ ├── test14_5.pdb
│ │ │ │ ├── test14_5.vshost.exe
│ │ │ │ └── test14_5.vshost.exe.manifest
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── AxInterop.WMPLib.dll
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── Interop.WMPLib.dll
│ │ │ │ ├── TempPE
│ │ │ │ │ └── ADVENTUREWORKSDataSet.Designer.cs.dll
│ │ │ │ ├── test14_5.Properties.Resources.resources
│ │ │ │ ├── test14_5.Test14_5.resources
│ │ │ │ ├── test14_5.csproj.FileListAbsolute.txt
│ │ │ │ ├── test14_5.csproj.ResolveComReference.cache
│ │ │ │ ├── test14_5.exe
│ │ │ │ └── test14_5.pdb
│ │ │ └── test14_5.csproj
│ │ ├── test14_5.sln
│ │ └── test14_5.suo
│ ├── test2_1
│ │ ├── test2_1
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test2_1.exe
│ │ │ │ ├── test2_1.pdb
│ │ │ │ ├── test2_1.vshost.exe
│ │ │ │ └── test2_1.vshost.exe.manifest
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test2_1.Properties.Resources.resources
│ │ │ │ ├── test2_1.csproj.FileListAbsolute.txt
│ │ │ │ ├── test2_1.exe
│ │ │ │ ├── test2_1.pdb
│ │ │ │ └── test2_1.test2_1.resources
│ │ │ ├── test2_1.Designer.cs
│ │ │ ├── test2_1.cs
│ │ │ ├── test2_1.csproj
│ │ │ └── test2_1.resx
│ │ ├── test2_1.sln
│ │ └── test2_1.suo
│ ├── test2_2
│ │ ├── test2_2
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test2_2.exe
│ │ │ │ ├── test2_2.pdb
│ │ │ │ ├── test2_2.vshost.exe
│ │ │ │ └── test2_2.vshost.exe.manifest
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test2_2.Properties.Resources.resources
│ │ │ │ ├── test2_2.csproj.FileListAbsolute.txt
│ │ │ │ ├── test2_2.exe
│ │ │ │ ├── test2_2.pdb
│ │ │ │ └── test2_2.test2_2.resources
│ │ │ ├── test2_2.Designer.cs
│ │ │ ├── test2_2.cs
│ │ │ ├── test2_2.csproj
│ │ │ └── test2_2.resx
│ │ ├── test2_2.sln
│ │ └── test2_2.suo
│ ├── test2_3
│ │ ├── test2_3
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Test2_3.Designer.cs
│ │ │ ├── Test2_3.cs
│ │ │ ├── Test2_3.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test2_3.exe
│ │ │ │ ├── test2_3.pdb
│ │ │ │ ├── test2_3.vshost.exe
│ │ │ │ └── test2_3.vshost.exe.manifest
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test2_3.Properties.Resources.resources
│ │ │ │ ├── test2_3.Test2_3.resources
│ │ │ │ ├── test2_3.csproj.FileListAbsolute.txt
│ │ │ │ ├── test2_3.exe
│ │ │ │ └── test2_3.pdb
│ │ │ └── test2_3.csproj
│ │ ├── test2_3.sln
│ │ └── test2_3.suo
│ ├── test2_4
│ │ ├── test2_4
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Test2_4.Designer.cs
│ │ │ ├── Test2_4.cs
│ │ │ ├── Test2_4.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test2_4.exe
│ │ │ │ ├── test2_4.pdb
│ │ │ │ ├── test2_4.vshost.exe
│ │ │ │ └── test2_4.vshost.exe.manifest
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test2_4.Properties.Resources.resources
│ │ │ │ ├── test2_4.Test2_4.resources
│ │ │ │ ├── test2_4.csproj.FileListAbsolute.txt
│ │ │ │ ├── test2_4.exe
│ │ │ │ └── test2_4.pdb
│ │ │ └── test2_4.csproj
│ │ ├── test2_4.sln
│ │ └── test2_4.suo
│ ├── test2_5
│ │ ├── test2_5
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Test2_5.Designer.cs
│ │ │ ├── Test2_5.cs
│ │ │ ├── Test2_5.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test2_5.exe
│ │ │ │ ├── test2_5.pdb
│ │ │ │ ├── test2_5.vshost.exe
│ │ │ │ └── test2_5.vshost.exe.manifest
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test2_5.Properties.Resources.resources
│ │ │ │ ├── test2_5.Test2_5.resources
│ │ │ │ ├── test2_5.csproj.FileListAbsolute.txt
│ │ │ │ ├── test2_5.exe
│ │ │ │ └── test2_5.pdb
│ │ │ └── test2_5.csproj
│ │ ├── test2_5.sln
│ │ └── test2_5.suo
│ ├── test2_6
│ │ ├── test2_6
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Test2_6.Designer.cs
│ │ │ ├── Test2_6.cs
│ │ │ ├── Test2_6.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test2_6.exe
│ │ │ │ ├── test2_6.pdb
│ │ │ │ ├── test2_6.vshost.exe
│ │ │ │ └── test2_6.vshost.exe.manifest
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test2_6.Properties.Resources.resources
│ │ │ │ ├── test2_6.Test2_6.resources
│ │ │ │ ├── test2_6.csproj.FileListAbsolute.txt
│ │ │ │ ├── test2_6.exe
│ │ │ │ └── test2_6.pdb
│ │ │ └── test2_6.csproj
│ │ ├── test2_6.sln
│ │ └── test2_6.suo
│ ├── test2_7
│ │ ├── test2_7
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Test2_7.Designer.cs
│ │ │ ├── Test2_7.cs
│ │ │ ├── Test2_7.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test2_7.exe
│ │ │ │ ├── test2_7.pdb
│ │ │ │ └── test2_7.vshost.exe
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test2_7.Properties.Resources.resources
│ │ │ │ ├── test2_7.Test2_7.resources
│ │ │ │ ├── test2_7.csproj.FileListAbsolute.txt
│ │ │ │ ├── test2_7.exe
│ │ │ │ └── test2_7.pdb
│ │ │ └── test2_7.csproj
│ │ ├── test2_7.sln
│ │ └── test2_7.suo
│ ├── test2_8
│ │ ├── test2_8
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Test2_8.Designer.cs
│ │ │ ├── Test2_8.cs
│ │ │ ├── Test2_8.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test2_8.exe
│ │ │ │ ├── test2_8.pdb
│ │ │ │ ├── test2_8.vshost.exe
│ │ │ │ └── test2_8.vshost.exe.manifest
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test2_8.Properties.Resources.resources
│ │ │ │ ├── test2_8.Test2_8.resources
│ │ │ │ ├── test2_8.csproj.FileListAbsolute.txt
│ │ │ │ ├── test2_8.exe
│ │ │ │ └── test2_8.pdb
│ │ │ └── test2_8.csproj
│ │ ├── test2_8.sln
│ │ └── test2_8.suo
│ ├── test2_9
│ │ ├── test2_9
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Test2_9.Designer.cs
│ │ │ ├── Test2_9.cs
│ │ │ ├── Test2_9.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test2_9.exe
│ │ │ │ ├── test2_9.pdb
│ │ │ │ ├── test2_9.vshost.exe
│ │ │ │ └── test2_9.vshost.exe.manifest
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test2_9.Properties.Resources.resources
│ │ │ │ ├── test2_9.Test2_9.resources
│ │ │ │ ├── test2_9.csproj.FileListAbsolute.txt
│ │ │ │ ├── test2_9.exe
│ │ │ │ └── test2_9.pdb
│ │ │ └── test2_9.csproj
│ │ ├── test2_9.sln
│ │ └── test2_9.suo
│ ├── test3_1
│ │ ├── test3_1
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Test3_1.Designer.cs
│ │ │ ├── Test3_1.cs
│ │ │ ├── Test3_1.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test3_1.exe
│ │ │ │ ├── test3_1.pdb
│ │ │ │ ├── test3_1.vshost.exe
│ │ │ │ └── test3_1.vshost.exe.manifest
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test3_1.Properties.Resources.resources
│ │ │ │ ├── test3_1.Test3_1.resources
│ │ │ │ ├── test3_1.csproj.FileListAbsolute.txt
│ │ │ │ ├── test3_1.exe
│ │ │ │ └── test3_1.pdb
│ │ │ └── test3_1.csproj
│ │ ├── test3_1.sln
│ │ └── test3_1.suo
│ ├── test3_10
│ │ ├── test3_10
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Test3_10.Designer.cs
│ │ │ ├── Test3_10.cs
│ │ │ ├── Test3_10.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test3_10.exe
│ │ │ │ ├── test3_10.pdb
│ │ │ │ ├── test3_10.vshost.exe
│ │ │ │ └── test3_10.vshost.exe.manifest
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test3_10.Properties.Resources.resources
│ │ │ │ ├── test3_10.Test3_10.resources
│ │ │ │ ├── test3_10.csproj.FileListAbsolute.txt
│ │ │ │ ├── test3_10.exe
│ │ │ │ └── test3_10.pdb
│ │ │ └── test3_10.csproj
│ │ ├── test3_10.sln
│ │ └── test3_10.suo
│ ├── test3_2
│ │ ├── test3_2
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Test3_2.Designer.cs
│ │ │ ├── Test3_2.cs
│ │ │ ├── Test3_2.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test3_2.exe
│ │ │ │ ├── test3_2.pdb
│ │ │ │ └── test3_2.vshost.exe
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test3_2.Properties.Resources.resources
│ │ │ │ ├── test3_2.Test3_2.resources
│ │ │ │ ├── test3_2.csproj.FileListAbsolute.txt
│ │ │ │ ├── test3_2.exe
│ │ │ │ └── test3_2.pdb
│ │ │ └── test3_2.csproj
│ │ ├── test3_2.sln
│ │ └── test3_2.suo
│ ├── test3_3
│ │ ├── test3_3
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Test3_3.Designer.cs
│ │ │ ├── Test3_3.cs
│ │ │ ├── Test3_3.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test3_3.exe
│ │ │ │ ├── test3_3.pdb
│ │ │ │ ├── test3_3.vshost.exe
│ │ │ │ └── test3_3.vshost.exe.manifest
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test3_3.Properties.Resources.resources
│ │ │ │ ├── test3_3.Test3_3.resources
│ │ │ │ ├── test3_3.csproj.FileListAbsolute.txt
│ │ │ │ ├── test3_3.exe
│ │ │ │ └── test3_3.pdb
│ │ │ └── test3_3.csproj
│ │ ├── test3_3.sln
│ │ └── test3_3.suo
│ ├── test3_5
│ │ ├── test3_5
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Test3_5.Designer.cs
│ │ │ ├── Test3_5.cs
│ │ │ ├── Test3_5.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test3_5.exe
│ │ │ │ ├── test3_5.pdb
│ │ │ │ ├── test3_5.vshost.exe
│ │ │ │ └── test3_5.vshost.exe.manifest
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test3_5.Properties.Resources.resources
│ │ │ │ ├── test3_5.Test3_5.resources
│ │ │ │ ├── test3_5.csproj.FileListAbsolute.txt
│ │ │ │ ├── test3_5.exe
│ │ │ │ └── test3_5.pdb
│ │ │ └── test3_5.csproj
│ │ ├── test3_5.sln
│ │ └── test3_5.suo
│ ├── test3_6
│ │ ├── test3_6
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Test3_6.Designer.cs
│ │ │ ├── Test3_6.cs
│ │ │ ├── Test3_6.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test3_6.exe
│ │ │ │ ├── test3_6.pdb
│ │ │ │ ├── test3_6.vshost.exe
│ │ │ │ └── test3_6.vshost.exe.manifest
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test3_6.Properties.Resources.resources
│ │ │ │ ├── test3_6.Test3_6.resources
│ │ │ │ ├── test3_6.csproj.FileListAbsolute.txt
│ │ │ │ ├── test3_6.exe
│ │ │ │ └── test3_6.pdb
│ │ │ └── test3_6.csproj
│ │ ├── test3_6.sln
│ │ └── test3_6.suo
│ ├── test3_7
│ │ ├── test3_7
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Test3_7.Designer.cs
│ │ │ ├── Test3_7.cs
│ │ │ ├── Test3_7.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test3_7.exe
│ │ │ │ ├── test3_7.pdb
│ │ │ │ ├── test3_7.vshost.exe
│ │ │ │ └── test3_7.vshost.exe.manifest
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test3_7.Properties.Resources.resources
│ │ │ │ ├── test3_7.Test3_7.resources
│ │ │ │ ├── test3_7.csproj.FileListAbsolute.txt
│ │ │ │ ├── test3_7.exe
│ │ │ │ └── test3_7.pdb
│ │ │ └── test3_7.csproj
│ │ ├── test3_7.sln
│ │ └── test3_7.suo
│ ├── test3_8
│ │ ├── test3_8
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Test3_8.Designer.cs
│ │ │ ├── Test3_8.cs
│ │ │ ├── Test3_8.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test3_8.exe
│ │ │ │ ├── test3_8.pdb
│ │ │ │ ├── test3_8.vshost.exe
│ │ │ │ └── test3_8.vshost.exe.manifest
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test3_8.Properties.Resources.resources
│ │ │ │ ├── test3_8.Test3_8.resources
│ │ │ │ ├── test3_8.csproj.FileListAbsolute.txt
│ │ │ │ ├── test3_8.exe
│ │ │ │ └── test3_8.pdb
│ │ │ └── test3_8.csproj
│ │ ├── test3_8.sln
│ │ └── test3_8.suo
│ ├── test3_9
│ │ ├── test3_9
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Test3_9.Designer.cs
│ │ │ ├── Test3_9.cs
│ │ │ ├── Test3_9.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test3_9.exe
│ │ │ │ ├── test3_9.pdb
│ │ │ │ ├── test3_9.vshost.exe
│ │ │ │ └── test3_9.vshost.exe.manifest
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test3_9.Properties.Resources.resources
│ │ │ │ ├── test3_9.Test3_9.resources
│ │ │ │ ├── test3_9.csproj.FileListAbsolute.txt
│ │ │ │ ├── test3_9.exe
│ │ │ │ └── test3_9.pdb
│ │ │ └── test3_9.csproj
│ │ ├── test3_9.sln
│ │ └── test3_9.suo
│ ├── test4_1
│ │ └── test4_1
│ │ ├── test4_1
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test4_1.exe
│ │ │ │ ├── test4_1.pdb
│ │ │ │ ├── test4_1.vshost.exe
│ │ │ │ └── test4_1.vshost.exe.manifest
│ │ │ ├── frmTest4_1.Designer.cs
│ │ │ ├── frmTest4_1.cs
│ │ │ ├── frmTest4_1.resx
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test4_1.Properties.Resources.resources
│ │ │ │ ├── test4_1.csproj.FileListAbsolute.txt
│ │ │ │ ├── test4_1.exe
│ │ │ │ ├── test4_1.frmTest4_1.resources
│ │ │ │ └── test4_1.pdb
│ │ │ └── test4_1.csproj
│ │ ├── test4_1.sln
│ │ └── test4_1.suo
│ ├── test4_10
│ │ ├── text4_10
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── text4_10.exe
│ │ │ │ ├── text4_10.pdb
│ │ │ │ ├── text4_10.vshost.exe
│ │ │ │ └── text4_10.vshost.exe.manifest
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── text4_10.Form1.resources
│ │ │ │ ├── text4_10.Properties.Resources.resources
│ │ │ │ ├── text4_10.csproj.FileListAbsolute.txt
│ │ │ │ ├── text4_10.exe
│ │ │ │ └── text4_10.pdb
│ │ │ └── text4_10.csproj
│ │ ├── text4_10.sln
│ │ └── text4_10.suo
│ ├── test4_2
│ │ └── test4_2
│ │ ├── test4_2
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test4_2.exe
│ │ │ │ ├── test4_2.pdb
│ │ │ │ ├── test4_2.vshost.exe
│ │ │ │ └── test4_2.vshost.exe.manifest
│ │ │ ├── frmTest4_2.Designer.cs
│ │ │ ├── frmTest4_2.cs
│ │ │ ├── frmTest4_2.resx
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test4_2.Properties.Resources.resources
│ │ │ │ ├── test4_2.csproj.FileListAbsolute.txt
│ │ │ │ ├── test4_2.exe
│ │ │ │ ├── test4_2.frmTest4_2.resources
│ │ │ │ └── test4_2.pdb
│ │ │ └── test4_2.csproj
│ │ ├── test4_2.sln
│ │ └── test4_2.suo
│ ├── test4_3
│ │ ├── test4_3
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── bin
│ │ │ │ ├── Debug
│ │ │ │ │ ├── test4_3.exe
│ │ │ │ │ ├── test4_3.pdb
│ │ │ │ │ └── test4_3.vshost.exe
│ │ │ │ └── Release
│ │ │ ├── frmTest4_3.Designer.cs
│ │ │ ├── frmTest4_3.cs
│ │ │ ├── frmTest4_3.resx
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test4_3.Properties.Resources.resources
│ │ │ │ ├── test4_3.csproj.FileListAbsolute.txt
│ │ │ │ ├── test4_3.exe
│ │ │ │ ├── test4_3.frmTest4_3.resources
│ │ │ │ └── test4_3.pdb
│ │ │ └── test4_3.csproj
│ │ ├── test4_3.sln
│ │ └── test4_3.suo
│ ├── test4_4
│ │ └── test4_4
│ │ ├── test4_4
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── bin
│ │ │ │ ├── Debug
│ │ │ │ │ ├── test4_3.exe
│ │ │ │ │ ├── test4_3.pdb
│ │ │ │ │ ├── test4_3.vshost.exe
│ │ │ │ │ └── test4_3.vshost.exe.manifest
│ │ │ │ └── Release
│ │ │ ├── frmTest4_4.Designer.cs
│ │ │ ├── frmTest4_4.cs
│ │ │ ├── frmTest4_4.resx
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test4_3.Properties.Resources.resources
│ │ │ │ ├── test4_3.csproj.FileListAbsolute.txt
│ │ │ │ ├── test4_3.exe
│ │ │ │ ├── test4_3.frmTest4_3.resources
│ │ │ │ ├── test4_3.frmTest4_4.resources
│ │ │ │ ├── test4_3.pdb
│ │ │ │ └── test4_4.csproj.FileListAbsolute.txt
│ │ │ └── test4_4.csproj
│ │ ├── test4_4.sln
│ │ └── test4_4.suo
│ ├── test4_5
│ │ └── test4_5
│ │ ├── test4_5
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test4_5.exe
│ │ │ │ ├── test4_5.pdb
│ │ │ │ ├── test4_5.vshost.exe
│ │ │ │ └── test4_5.vshost.exe.manifest
│ │ │ ├── frmTest4_5.Designer.cs
│ │ │ ├── frmTest4_5.cs
│ │ │ ├── frmTest4_5.resx
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test4_5.Properties.Resources.resources
│ │ │ │ ├── test4_5.csproj.FileListAbsolute.txt
│ │ │ │ ├── test4_5.exe
│ │ │ │ ├── test4_5.frmTest4_5.resources
│ │ │ │ └── test4_5.pdb
│ │ │ └── test4_5.csproj
│ │ ├── test4_5.sln
│ │ └── test4_5.suo
│ ├── test4_6
│ │ └── test4_6
│ │ ├── test4_6
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test4_6.exe
│ │ │ │ ├── test4_6.pdb
│ │ │ │ ├── test4_6.vshost.exe
│ │ │ │ └── test4_6.vshost.exe.manifest
│ │ │ ├── frmTest4_6.Designer.cs
│ │ │ ├── frmTest4_6.cs
│ │ │ ├── frmTest4_6.resx
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test4_6.Properties.Resources.resources
│ │ │ │ ├── test4_6.csproj.FileListAbsolute.txt
│ │ │ │ ├── test4_6.exe
│ │ │ │ ├── test4_6.frmTest4_6.resources
│ │ │ │ └── test4_6.pdb
│ │ │ └── test4_6.csproj
│ │ ├── test4_6.sln
│ │ └── test4_6.suo
│ ├── test4_7
│ │ ├── test4_7
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test4_7.exe
│ │ │ │ ├── test4_7.pdb
│ │ │ │ ├── test4_7.vshost.exe
│ │ │ │ └── test4_7.vshost.exe.manifest
│ │ │ ├── frmTest4_7.Designer.cs
│ │ │ ├── frmTest4_7.cs
│ │ │ ├── frmTest4_7.resx
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test4_7.Properties.Resources.resources
│ │ │ │ ├── test4_7.csproj.FileListAbsolute.txt
│ │ │ │ ├── test4_7.exe
│ │ │ │ ├── test4_7.frmTest4_7.resources
│ │ │ │ └── test4_7.pdb
│ │ │ └── test4_7.csproj
│ │ ├── test4_7.sln
│ │ └── test4_7.suo
│ ├── test4_8
│ │ ├── test4_8
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test4_8.exe
│ │ │ │ ├── test4_8.pdb
│ │ │ │ ├── test4_8.vshost.exe
│ │ │ │ └── test4_8.vshost.exe.manifest
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test4_8.Form1.resources
│ │ │ │ ├── test4_8.Properties.Resources.resources
│ │ │ │ ├── test4_8.csproj.FileListAbsolute.txt
│ │ │ │ ├── test4_8.exe
│ │ │ │ └── test4_8.pdb
│ │ │ └── test4_8.csproj
│ │ ├── test4_8.sln
│ │ └── test4_8.suo
│ ├── test4_9
│ │ ├── test4_9
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test4_9.exe
│ │ │ │ ├── test4_9.pdb
│ │ │ │ ├── test4_9.vshost.exe
│ │ │ │ └── test4_9.vshost.exe.manifest
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test4_9.Form1.resources
│ │ │ │ ├── test4_9.Properties.Resources.resources
│ │ │ │ ├── test4_9.csproj.FileListAbsolute.txt
│ │ │ │ ├── test4_9.exe
│ │ │ │ └── test4_9.pdb
│ │ │ └── test4_9.csproj
│ │ ├── test4_9.sln
│ │ └── test4_9.suo
│ ├── test5_1
│ │ ├── test5_1
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test5_1.exe
│ │ │ │ ├── test5_1.pdb
│ │ │ │ ├── test5_1.vshost.exe
│ │ │ │ └── test5_1.vshost.exe.manifest
│ │ │ ├── frmTest5_1.Designer.cs
│ │ │ ├── frmTest5_1.cs
│ │ │ ├── frmTest5_1.resx
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── ResolveAssemblyReference.cache
│ │ │ │ ├── TempPE
│ │ │ │ ├── test5_1.Properties.Resources.resources
│ │ │ │ ├── test5_1.csproj.FileListAbsolute.txt
│ │ │ │ ├── test5_1.exe
│ │ │ │ ├── test5_1.frmTest5_1.resources
│ │ │ │ └── test5_1.pdb
│ │ │ └── test5_1.csproj
│ │ ├── test5_1.sln
│ │ └── test5_1.suo
│ ├── test5_2
│ │ ├── test5_2
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test5_2.exe
│ │ │ │ ├── test5_2.pdb
│ │ │ │ ├── test5_2.vshost.exe
│ │ │ │ └── test5_2.vshost.exe.manifest
│ │ │ ├── frmTest5_2.Designer.cs
│ │ │ ├── frmTest5_2.cs
│ │ │ ├── frmTest5_2.resx
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test5_2.Properties.Resources.resources
│ │ │ │ ├── test5_2.csproj.FileListAbsolute.txt
│ │ │ │ ├── test5_2.exe
│ │ │ │ ├── test5_2.frmTest5_2.resources
│ │ │ │ └── test5_2.pdb
│ │ │ └── test5_2.csproj
│ │ ├── test5_2.sln
│ │ └── test5_2.suo
│ ├── test5_3
│ │ ├── test5_3
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test5_3.exe
│ │ │ │ ├── test5_3.pdb
│ │ │ │ ├── test5_3.vshost.exe
│ │ │ │ └── test5_3.vshost.exe.manifest
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test5_3.Form1.resources
│ │ │ │ ├── test5_3.Properties.Resources.resources
│ │ │ │ ├── test5_3.csproj.FileListAbsolute.txt
│ │ │ │ ├── test5_3.exe
│ │ │ │ └── test5_3.pdb
│ │ │ └── test5_3.csproj
│ │ ├── test5_3.sln
│ │ └── test5_3.suo
│ ├── test5_4
│ │ ├── test5_4
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test5_4.exe
│ │ │ │ ├── test5_4.pdb
│ │ │ │ ├── test5_4.vshost.exe
│ │ │ │ └── test5_4.vshost.exe.manifest
│ │ │ ├── frmTest5_4.Designer.cs
│ │ │ ├── frmTest5_4.cs
│ │ │ ├── frmTest5_4.resx
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── ResolveAssemblyReference.cache
│ │ │ │ ├── TempPE
│ │ │ │ ├── test5_4.Properties.Resources.resources
│ │ │ │ ├── test5_4.csproj.FileListAbsolute.txt
│ │ │ │ ├── test5_4.exe
│ │ │ │ ├── test5_4.frmTest5_4.resources
│ │ │ │ └── test5_4.pdb
│ │ │ └── test5_4.csproj
│ │ ├── test5_4.sln
│ │ └── test5_4.suo
│ ├── test5_4 -new
│ │ ├── test5_4
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test5_4.exe
│ │ │ │ ├── test5_4.pdb
│ │ │ │ ├── test5_4.vshost.exe
│ │ │ │ └── test5_4.vshost.exe.manifest
│ │ │ ├── frmTest5_4.Designer.cs
│ │ │ ├── frmTest5_4.cs
│ │ │ ├── frmTest5_4.resx
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── ResolveAssemblyReference.cache
│ │ │ │ ├── TempPE
│ │ │ │ ├── test5_4.Properties.Resources.resources
│ │ │ │ ├── test5_4.csproj.FileListAbsolute.txt
│ │ │ │ ├── test5_4.exe
│ │ │ │ ├── test5_4.frmTest5_4.resources
│ │ │ │ └── test5_4.pdb
│ │ │ └── test5_4.csproj
│ │ ├── test5_4.sln
│ │ └── test5_4.suo
│ ├── test5_5
│ │ ├── test5_5
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test5_5.exe
│ │ │ │ ├── test5_5.pdb
│ │ │ │ ├── test5_5.vshost.exe
│ │ │ │ └── test5_5.vshost.exe.manifest
│ │ │ ├── frmTest5_5.Designer.cs
│ │ │ ├── frmTest5_5.cs
│ │ │ ├── frmTest5_5.resx
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── ResolveAssemblyReference.cache
│ │ │ │ ├── TempPE
│ │ │ │ ├── test5_5.Properties.Resources.resources
│ │ │ │ ├── test5_5.csproj.FileListAbsolute.txt
│ │ │ │ ├── test5_5.exe
│ │ │ │ ├── test5_5.frmTest5_5.resources
│ │ │ │ └── test5_5.pdb
│ │ │ └── test5_5.csproj
│ │ ├── test5_5.sln
│ │ └── test5_5.suo
│ ├── test5_6
│ │ ├── test5_6
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test5_6.exe
│ │ │ │ ├── test5_6.pdb
│ │ │ │ └── test5_6.vshost.exe
│ │ │ ├── frmTest5_6.Designer.cs
│ │ │ ├── frmTest5_6.cs
│ │ │ ├── frmTest5_6.resx
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test5_6.Properties.Resources.resources
│ │ │ │ ├── test5_6.csproj.FileListAbsolute.txt
│ │ │ │ ├── test5_6.exe
│ │ │ │ ├── test5_6.frmTest5_6.resources
│ │ │ │ └── test5_6.pdb
│ │ │ └── test5_6.csproj
│ │ ├── test5_6.sln
│ │ └── test5_6.suo
│ ├── test5_7
│ │ ├── test5_7
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test5_7.exe
│ │ │ │ ├── test5_7.pdb
│ │ │ │ └── test5_7.vshost.exe
│ │ │ ├── frmTest5_7.Designer.cs
│ │ │ ├── frmTest5_7.cs
│ │ │ ├── frmTest5_7.resx
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test5_7.Properties.Resources.resources
│ │ │ │ ├── test5_7.csproj.FileListAbsolute.txt
│ │ │ │ ├── test5_7.exe
│ │ │ │ ├── test5_7.frmTest5_7.resources
│ │ │ │ └── test5_7.pdb
│ │ │ └── test5_7.csproj
│ │ ├── test5_7.sln
│ │ └── test5_7.suo
│ ├── test7_1
│ │ ├── test7_1
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Test7_1.Designer.cs
│ │ │ ├── Test7_1.cs
│ │ │ ├── Test7_1.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test7_1.exe
│ │ │ │ ├── test7_1.pdb
│ │ │ │ ├── test7_1.vshost.exe
│ │ │ │ └── test7_1.vshost.exe.manifest
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test7_1.Properties.Resources.resources
│ │ │ │ ├── test7_1.Test7_1.resources
│ │ │ │ ├── test7_1.csproj.FileListAbsolute.txt
│ │ │ │ ├── test7_1.exe
│ │ │ │ └── test7_1.pdb
│ │ │ └── test7_1.csproj
│ │ ├── test7_1.sln
│ │ └── test7_1.suo
│ ├── test7_2
│ │ ├── test7_2
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Test7_2.Designer.cs
│ │ │ ├── Test7_2.cs
│ │ │ ├── Test7_2.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test7_2.exe
│ │ │ │ ├── test7_2.pdb
│ │ │ │ ├── test7_2.vshost.exe
│ │ │ │ └── test7_2.vshost.exe.manifest
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── ResolveAssemblyReference.cache
│ │ │ │ ├── TempPE
│ │ │ │ ├── test7_2.Properties.Resources.resources
│ │ │ │ ├── test7_2.Test7_2.resources
│ │ │ │ ├── test7_2.csproj.FileListAbsolute.txt
│ │ │ │ ├── test7_2.exe
│ │ │ │ └── test7_2.pdb
│ │ │ └── test7_2.csproj
│ │ ├── test7_2.sln
│ │ └── test7_2.suo
│ ├── test7_4
│ │ ├── test7_4
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Test7_4.Designer.cs
│ │ │ ├── Test7_4.cs
│ │ │ ├── Test7_4.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test7_4.exe
│ │ │ │ ├── test7_4.pdb
│ │ │ │ ├── test7_4.vshost.exe
│ │ │ │ └── test7_4.vshost.exe.manifest
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test7_4.Properties.Resources.resources
│ │ │ │ ├── test7_4.Test7_4.resources
│ │ │ │ ├── test7_4.csproj.FileListAbsolute.txt
│ │ │ │ ├── test7_4.exe
│ │ │ │ └── test7_4.pdb
│ │ │ └── test7_4.csproj
│ │ ├── test7_4.sln
│ │ └── test7_4.suo
│ ├── test8_1
│ │ ├── test8_1
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Test8_1.Designer.cs
│ │ │ ├── Test8_1.cs
│ │ │ ├── Test8_1.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test8_1.exe
│ │ │ │ ├── test8_1.pdb
│ │ │ │ ├── test8_1.vshost.exe
│ │ │ │ └── test8_1.vshost.exe.manifest
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test8_1.Properties.Resources.resources
│ │ │ │ ├── test8_1.Test8_1.resources
│ │ │ │ ├── test8_1.csproj.FileListAbsolute.txt
│ │ │ │ ├── test8_1.exe
│ │ │ │ └── test8_1.pdb
│ │ │ └── test8_1.csproj
│ │ ├── test8_1.sln
│ │ └── test8_1.suo
│ ├── test8_3
│ │ ├── test8_3
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Test8_3.Designer.cs
│ │ │ ├── Test8_3.cs
│ │ │ ├── Test8_3.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test8_3.exe
│ │ │ │ ├── test8_3.pdb
│ │ │ │ ├── test8_3.vshost.exe
│ │ │ │ └── test8_3.vshost.exe.manifest
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test8_3.Properties.Resources.resources
│ │ │ │ ├── test8_3.Test8_3.resources
│ │ │ │ ├── test8_3.csproj.FileListAbsolute.txt
│ │ │ │ ├── test8_3.exe
│ │ │ │ └── test8_3.pdb
│ │ │ └── test8_3.csproj
│ │ ├── test8_3.sln
│ │ └── test8_3.suo
│ ├── test8_4
│ │ ├── test8_4
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Test8_4.Designer.cs
│ │ │ ├── Test8_4.cs
│ │ │ ├── Test8_4.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test8_4.exe
│ │ │ │ ├── test8_4.pdb
│ │ │ │ ├── test8_4.vshost.exe
│ │ │ │ └── test8_4.vshost.exe.manifest
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── ResolveAssemblyReference.cache
│ │ │ │ ├── TempPE
│ │ │ │ ├── test8_4.Properties.Resources.resources
│ │ │ │ ├── test8_4.Test8_4.resources
│ │ │ │ ├── test8_4.csproj.FileListAbsolute.txt
│ │ │ │ ├── test8_4.exe
│ │ │ │ └── test8_4.pdb
│ │ │ └── test8_4.csproj
│ │ ├── test8_4.sln
│ │ └── test8_4.suo
│ ├── test9_1_LinkLabel
│ │ ├── LinkLabelEx.sln
│ │ ├── LinkLabelEx.suo
│ │ └── WindowsFormsApplication3
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── LinkLabelEx.csproj
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── WindowsFormsApplication3.exe
│ │ │ ├── WindowsFormsApplication3.pdb
│ │ │ ├── WindowsFormsApplication3.vshost.exe
│ │ │ └── WindowsFormsApplication3.vshost.exe.manifest
│ │ └── obj
│ │ └── x86
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── GenerateResource.read.1.tlog
│ │ ├── GenerateResource.write.1.tlog
│ │ ├── LinkLabelEx.csproj.FileListAbsolute.txt
│ │ ├── TempPE
│ │ ├── WindowsFormsApplication3.Form1.resources
│ │ ├── WindowsFormsApplication3.Properties.Resources.resources
│ │ ├── WindowsFormsApplication3.csproj.FileListAbsolute.txt
│ │ ├── WindowsFormsApplication3.exe
│ │ └── WindowsFormsApplication3.pdb
│ ├── test9_3
│ │ ├── test9.3
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test9.3.exe
│ │ │ │ ├── test9.3.pdb
│ │ │ │ ├── test9.3.vshost.exe
│ │ │ │ └── test9.3.vshost.exe.manifest
│ │ │ ├── frm9.3.1.Designer.cs
│ │ │ ├── frm9.3.1.cs
│ │ │ ├── frm9.3.1.resx
│ │ │ ├── frm9.3.3.Designer.cs
│ │ │ ├── frm9.3.3.cs
│ │ │ ├── frm9.3.3.resx
│ │ │ ├── frm9_3_4.Designer.cs
│ │ │ ├── frm9_3_4.cs
│ │ │ ├── frm9_3_4.resx
│ │ │ ├── frm9_3_5.Designer.cs
│ │ │ ├── frm9_3_5.cs
│ │ │ ├── frm9_3_5.resx
│ │ │ ├── frm9_3_6.Designer.cs
│ │ │ ├── frm9_3_6.cs
│ │ │ ├── frm9_3_6.resx
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── ResolveAssemblyReference.cache
│ │ │ │ ├── TempPE
│ │ │ │ ├── test9.3.csproj.FileListAbsolute.txt
│ │ │ │ ├── test9.3.exe
│ │ │ │ ├── test9.3.pdb
│ │ │ │ ├── test9._3.Form1.resources
│ │ │ │ ├── test9._3.Properties.Resources.resources
│ │ │ │ ├── test9._3.frm94.resources
│ │ │ │ ├── test9._3.frm9_3_4.resources
│ │ │ │ ├── test9._3.frm9_3_5.resources
│ │ │ │ └── test9._3.frm9_3_6.resources
│ │ │ └── test9.3.csproj
│ │ ├── test9.3.sln
│ │ └── test9.3.suo
│ ├── test9_4
│ │ ├── test9_4
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test9_4.exe
│ │ │ │ ├── test9_4.pdb
│ │ │ │ ├── test9_4.vshost.exe
│ │ │ │ └── test9_4.vshost.exe.manifest
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test9_4.Form1.resources
│ │ │ │ ├── test9_4.Properties.Resources.resources
│ │ │ │ ├── test9_4.csproj.FileListAbsolute.txt
│ │ │ │ ├── test9_4.exe
│ │ │ │ └── test9_4.pdb
│ │ │ └── test9_4.csproj
│ │ ├── test9_4.sln
│ │ └── test9_4.suo
│ ├── test9_5
│ │ ├── test9_5
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test9_5.exe
│ │ │ │ ├── test9_5.pdb
│ │ │ │ ├── test9_5.vshost.exe
│ │ │ │ └── test9_5.vshost.exe.manifest
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test9_5.Form1.resources
│ │ │ │ ├── test9_5.Properties.Resources.resources
│ │ │ │ ├── test9_5.csproj.FileListAbsolute.txt
│ │ │ │ ├── test9_5.exe
│ │ │ │ └── test9_5.pdb
│ │ │ └── test9_5.csproj
│ │ ├── test9_5.sln
│ │ └── test9_5.suo
│ ├── test9_6_3
│ │ ├── test9_6_3
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test9_6_3.exe
│ │ │ │ ├── test9_6_3.pdb
│ │ │ │ ├── test9_6_3.vshost.exe
│ │ │ │ └── test9_6_3.vshost.exe.manifest
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test9_6_3.Form1.resources
│ │ │ │ ├── test9_6_3.Properties.Resources.resources
│ │ │ │ ├── test9_6_3.csproj.FileListAbsolute.txt
│ │ │ │ ├── test9_6_3.exe
│ │ │ │ └── test9_6_3.pdb
│ │ │ └── test9_6_3.csproj
│ │ ├── test9_6_3.sln
│ │ └── test9_6_3.suo
│ ├── test9_8
│ │ ├── test9_8
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Form2.Designer.cs
│ │ │ ├── Form2.cs
│ │ │ ├── Form2.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── test9_8.exe
│ │ │ │ ├── test9_8.pdb
│ │ │ │ ├── test9_8.vshost.exe
│ │ │ │ └── test9_8.vshost.exe.manifest
│ │ │ ├── frmTest9_8.Designer.cs
│ │ │ ├── frmTest9_8.cs
│ │ │ ├── frmTest9_8.resx
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── test9_8.Form1.resources
│ │ │ │ ├── test9_8.Form2.resources
│ │ │ │ ├── test9_8.Properties.Resources.resources
│ │ │ │ ├── test9_8.csproj.FileListAbsolute.txt
│ │ │ │ ├── test9_8.exe
│ │ │ │ ├── test9_8.frmTest9_8.resources
│ │ │ │ └── test9_8.pdb
│ │ │ └── test9_8.csproj
│ │ ├── test9_8.sln
│ │ └── test9_8.suo
│ ├── train11_1
│ │ ├── train11_1
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Train11_1.Designer.cs
│ │ │ ├── Train11_1.cs
│ │ │ ├── Train11_1.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── train11_1.exe
│ │ │ │ ├── train11_1.pdb
│ │ │ │ ├── train11_1.vshost.exe
│ │ │ │ └── train11_1.vshost.exe.manifest
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── train11_1.Properties.Resources.resources
│ │ │ │ ├── train11_1.Train11_1.resources
│ │ │ │ ├── train11_1.csproj.FileListAbsolute.txt
│ │ │ │ ├── train11_1.exe
│ │ │ │ └── train11_1.pdb
│ │ │ └── train11_1.csproj
│ │ ├── train11_1.sln
│ │ └── train11_1.suo
│ ├── train2_1
│ │ ├── train2_1
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Train2_2.Designer.cs
│ │ │ ├── Train2_2.cs
│ │ │ ├── Train2_2.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── train2_1.exe
│ │ │ │ ├── train2_1.pdb
│ │ │ │ ├── train2_1.vshost.exe
│ │ │ │ └── train2_1.vshost.exe.manifest
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── train2_1.Properties.Resources.resources
│ │ │ │ ├── train2_1.Train2_2.resources
│ │ │ │ ├── train2_1.csproj.FileListAbsolute.txt
│ │ │ │ ├── train2_1.exe
│ │ │ │ └── train2_1.pdb
│ │ │ └── train2_1.csproj
│ │ ├── train2_1.sln
│ │ └── train2_1.suo
│ ├── train2_2
│ │ ├── train2_2
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Train2_2.Designer.cs
│ │ │ ├── Train2_2.cs
│ │ │ ├── Train2_2.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── train2_2.exe
│ │ │ │ ├── train2_2.pdb
│ │ │ │ ├── train2_2.vshost.exe
│ │ │ │ └── train2_2.vshost.exe.manifest
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── train2_2.Properties.Resources.resources
│ │ │ │ ├── train2_2.Train2_2.resources
│ │ │ │ ├── train2_2.csproj.FileListAbsolute.txt
│ │ │ │ ├── train2_2.exe
│ │ │ │ └── train2_2.pdb
│ │ │ └── train2_2.csproj
│ │ ├── train2_2.sln
│ │ └── train2_2.suo
│ ├── train2_3
│ │ ├── train2_3
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Train2_3.Designer.cs
│ │ │ ├── Train2_3.cs
│ │ │ ├── Train2_3.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── train2_3.exe
│ │ │ │ ├── train2_3.pdb
│ │ │ │ ├── train2_3.vshost.exe
│ │ │ │ └── train2_3.vshost.exe.manifest
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── train2_3.Properties.Resources.resources
│ │ │ │ ├── train2_3.Train2_3.resources
│ │ │ │ ├── train2_3.csproj.FileListAbsolute.txt
│ │ │ │ ├── train2_3.exe
│ │ │ │ └── train2_3.pdb
│ │ │ └── train2_3.csproj
│ │ ├── train2_3.sln
│ │ └── train2_3.suo
│ ├── train3_3
│ │ ├── train3_3
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Train3_3.Designer.cs
│ │ │ ├── Train3_3.cs
│ │ │ ├── Train3_3.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── train3_3.exe
│ │ │ │ ├── train3_3.pdb
│ │ │ │ ├── train3_3.vshost.exe
│ │ │ │ └── train3_3.vshost.exe.manifest
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── ResolveAssemblyReference.cache
│ │ │ │ ├── TempPE
│ │ │ │ ├── train3_3.Properties.Resources.resources
│ │ │ │ ├── train3_3.Train3_3.resources
│ │ │ │ ├── train3_3.csproj.FileListAbsolute.txt
│ │ │ │ ├── train3_3.exe
│ │ │ │ └── train3_3.pdb
│ │ │ └── train3_3.csproj
│ │ ├── train3_3.sln
│ │ └── train3_3.suo
│ ├── train7_1
│ │ ├── train7_1
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Train7_1.Designer.cs
│ │ │ ├── Train7_1.cs
│ │ │ ├── Train7_1.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── train7_1.exe
│ │ │ │ ├── train7_1.pdb
│ │ │ │ ├── train7_1.vshost.exe
│ │ │ │ └── train7_1.vshost.exe.manifest
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── train7_1.Properties.Resources.resources
│ │ │ │ ├── train7_1.Train7_1.resources
│ │ │ │ ├── train7_1.csproj.FileListAbsolute.txt
│ │ │ │ ├── train7_1.exe
│ │ │ │ └── train7_1.pdb
│ │ │ └── train7_1.csproj
│ │ ├── train7_1.sln
│ │ └── train7_1.suo
│ ├── train8_1
│ │ ├── train8_1
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── Train8_1.Designer.cs
│ │ │ ├── Train8_1.cs
│ │ │ ├── Train8_1.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── train8_1.exe
│ │ │ │ ├── train8_1.pdb
│ │ │ │ ├── train8_1.vshost.exe
│ │ │ │ └── train8_1.vshost.exe.manifest
│ │ │ ├── obj
│ │ │ │ └── x86
│ │ │ │ └── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── GenerateResource.read.1.tlog
│ │ │ │ ├── GenerateResource.write.1.tlog
│ │ │ │ ├── TempPE
│ │ │ │ ├── train8_1.Properties.Resources.resources
│ │ │ │ ├── train8_1.Train8_1.resources
│ │ │ │ ├── train8_1.csproj.FileListAbsolute.txt
│ │ │ │ ├── train8_1.exe
│ │ │ │ └── train8_1.pdb
│ │ │ └── train8_1.csproj
│ │ ├── train8_1.sln
│ │ └── train8_1.suo
│ └── train8_2
│ ├── train8_2
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Train8_2.Designer.cs
│ │ ├── Train8_2.cs
│ │ ├── Train8_2.resx
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── train8_2.exe
│ │ │ ├── train8_2.pdb
│ │ │ ├── train8_2.vshost.exe
│ │ │ └── train8_2.vshost.exe.manifest
│ │ ├── obj
│ │ │ └── x86
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── GenerateResource.read.1.tlog
│ │ │ ├── GenerateResource.write.1.tlog
│ │ │ ├── TempPE
│ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ ├── train8_2.Properties.Resources.resources
│ │ │ ├── train8_2.Train8_2.resources
│ │ │ ├── train8_2.csproj.FileListAbsolute.txt
│ │ │ ├── train8_2.exe
│ │ │ └── train8_2.pdb
│ │ ├── tp.jpg
│ │ └── train8_2.csproj
│ ├── train8_2.sln
│ └── train8_2.suo
├── 好例子网_C#程序设计经典教程(第二版)课件 源代码 期末考试.rar
└── 开发工具考试试卷
├── 2014-2015-1《开发工具》课程期末考试试卷.pdf
└── mydb.bak
834 directories, 2384 files
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论