Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对链接提示感到很困惑。假设我有一个使用 dll 的应用程序,但我不想使用它,我想与 lib 静态链接并避免对 dll 的依赖。是否可以?
如果您想要解决问题而不是一堆新问题,那么不尝试是不可能的。
(我已经成功完成了几次类似的工作。一个变体使用 MemoryModule 并从内存加载,另一个变体使用启发式方法来查找跨段重定位并将它们修复以重新分离代码和数据部分。两者都不像您可能向对链接提示感到困惑的人推荐的东西)。
我一直在开发一个网页,允许用户根据几个过滤器/标准在数据库中搜索项目。其中一项要求是能够将此数据导出到电子表格 (excel) 中。到目前为止,我已经使用 CSV 文件创建了一个非常简单的方法。
//get model... StringWriter sw = new StringWriter(); //First line for column names sw.WriteLine("col1,col2,col3")