嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
C#调用C DLL
C#调用C 的DLL,很多地方有重要的应用,比如高性能计算方面,C 具有优势,这只是一个简单的调用函数,讲解了怎样使用VC 生成DLL,然后采用C#调用,备忘录而已,免积分,您觉得有价值可以给5分哦
.
├── C#-C
│ ├── cs
│ │ ├── cs
│ │ │ ├── App.config
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── bin
│ │ │ │ ├── Debug
│ │ │ │ │ ├── cs.exe
│ │ │ │ │ ├── cs.exe.config
│ │ │ │ │ ├── cs.pdb
│ │ │ │ │ ├── cs.vshost.exe
│ │ │ │ │ ├── cs.vshost.exe.config
│ │ │ │ │ └── mycpp.dll
│ │ │ │ └── Release
│ │ │ │ ├── cs.exe
│ │ │ │ ├── cs.exe.config
│ │ │ │ ├── cs.pdb
│ │ │ │ ├── cs.vshost.exe
│ │ │ │ ├── cs.vshost.exe.config
│ │ │ │ ├── cs.vshost.exe.manifest
│ │ │ │ └── mycpp.dll
│ │ │ ├── cs.csproj
│ │ │ └── obj
│ │ │ ├── Debug
│ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ │ ├── TempPE
│ │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ │ ├── cs.csproj.FileListAbsolute.txt
│ │ │ │ ├── cs.csprojResolveAssemblyReference.cache
│ │ │ │ ├── cs.exe
│ │ │ │ └── cs.pdb
│ │ │ └── Release
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── TempPE
│ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ ├── cs.csproj.FileListAbsolute.txt
│ │ │ ├── cs.exe
│ │ │ └── cs.pdb
│ │ ├── cs.sln
│ │ └── cs.v11.suo
│ └── mycpp
│ ├── Debug
│ │ ├── mycpp.dll
│ │ ├── mycpp.exp
│ │ ├── mycpp.ilk
│ │ ├── mycpp.lib
│ │ └── mycpp.pdb
│ ├── Release
│ │ ├── mycpp.dll
│ │ ├── mycpp.exp
│ │ ├── mycpp.lib
│ │ └── mycpp.pdb
│ ├── ipch
│ │ └── mycpp-4bae2610
│ │ ├── mycpp-1c18ddf5.ipch
│ │ └── mycpp-b053b36f.ipch
│ ├── mycpp
│ │ ├── Debug
│ │ │ ├── CL.read.1.tlog
│ │ │ ├── CL.write.1.tlog
│ │ │ ├── cl.command.1.tlog
│ │ │ ├── dllmain.obj
│ │ │ ├── link-cvtres.read.1.tlog
│ │ │ ├── link-cvtres.write.1.tlog
│ │ │ ├── link-rc.read.1.tlog
│ │ │ ├── link-rc.write.1.tlog
│ │ │ ├── link.command.1.tlog
│ │ │ ├── link.read.1.tlog
│ │ │ ├── link.write.1.tlog
│ │ │ ├── mycpp.lastbuildstate
│ │ │ ├── mycpp.log
│ │ │ ├── mycpp.obj
│ │ │ ├── mycpp.pch
│ │ │ ├── mycpp.write.1.tlog
│ │ │ ├── stdafx.obj
│ │ │ ├── vc110.idb
│ │ │ └── vc110.pdb
│ │ ├── ReadMe.txt
│ │ ├── Release
│ │ │ ├── CL.read.1.tlog
│ │ │ ├── CL.write.1.tlog
│ │ │ ├── cl.command.1.tlog
│ │ │ ├── dllmain.obj
│ │ │ ├── link-cvtres.read.1.tlog
│ │ │ ├── link-cvtres.write.1.tlog
│ │ │ ├── link-rc.read.1.tlog
│ │ │ ├── link-rc.write.1.tlog
│ │ │ ├── link.command.1.tlog
│ │ │ ├── link.read.1.tlog
│ │ │ ├── link.write.1.tlog
│ │ │ ├── mycpp.lastbuildstate
│ │ │ ├── mycpp.log
│ │ │ ├── mycpp.obj
│ │ │ ├── mycpp.pch
│ │ │ ├── mycpp.write.1.tlog
│ │ │ ├── stdafx.obj
│ │ │ └── vc110.pdb
│ │ ├── dllmain.cpp
│ │ ├── mycpp.cpp
│ │ ├── mycpp.vcxproj
│ │ ├── mycpp.vcxproj.filters
│ │ ├── stdafx.cpp
│ │ ├── stdafx.h
│ │ └── targetver.h
│ ├── mycpp.sdf
│ ├── mycpp.sln
│ └── mycpp.v11.suo
└── C#调用C DLL.rar
20 directories, 94 files