【实例简介】
当我们的程序需要引用多个dll,太多的dll引起混乱时,我们是不是可以将dll分类在不同的目录呢?如何引用不同文件夹的Dll文件,将是我们的问题?
【实例截图】
【核心代码】
1f01540d-675f-42d3-a480-ec8638d8a2d6
└── dllyy
├── dllYY
│ ├── App.config
│ ├── bin
│ │ └── Debug
│ │ ├── dll
│ │ │ └── Function.dll
│ │ ├── dllYY.exe
│ │ ├── dllYY.exe.config
│ │ ├── dllYY.pdb
│ │ ├── dllYY.vshost.exe
│ │ └── dllYY.vshost.exe.config
│ ├── dllYY.csproj
│ ├── dllYY.csproj.user
│ ├── Form1.cs
│ ├── Form1.Designer.cs
│ ├── Form1.resx
│ ├── obj
│ │ └── x86
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── dllYY.csproj.FileListAbsolute.txt
│ │ ├── dllYY.exe
│ │ ├── dllYY.Form1.resources
│ │ ├── dllYY.pdb
│ │ ├── dllYY.Properties.Resources.resources
│ │ ├── GenerateResource.read.1.tlog
│ │ ├── GenerateResource.write.1.tlog
│ │ └── ResolveAssemblyReference.cache
│ ├── Program.cs
│ └── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
├── dllyy.sln
└── dllyy.suo
9 directories, 29 files