boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
DotNet版 - .dll file editor
相关主题
[转载] 柴玲招dotnet programmer也不sponsor
Answer Re: ASP.NET 难题测试 (1)
ASP.NET 难题测试 (2)
.net framework class library的source open嘛?
reflector will become paid-for product in March
怎么转换?
请问如何得到当前windows系统的序列号?
问个问题:怎么实现这个功能?
如何把路径字符串截短并加上...的标志?
新手问个问题哈,关于C#的
相关话题的讨论汇总
话题: dll话题: file话题: ilasm话题: editor
进入DotNet版参与讨论
1 (共1页)
A*******n
发帖数: 625
1
who knows which software can edit .dll file?
sevel years ago, a programmer designed the dll files and embedded the
connectstring in the file, now the server is changed. so I need a editor can
open the dll file and change the connectstring setting.
thanks for help
a9
发帖数: 21638
2
reflector

can

【在 A*******n 的大作中提到】
: who knows which software can edit .dll file?
: sevel years ago, a programmer designed the dll files and embedded the
: connectstring in the file, now the server is changed. so I need a editor can
: open the dll file and change the connectstring setting.
: thanks for help

a9
发帖数: 21638
3
或者直接ilasm,改完字符串再编译回去。这个最简单。

【在 a9 的大作中提到】
: reflector
:
: can

A*******n
发帖数: 625
4
直接ilasm?
would you please tell me more detail?
I try to use reflector, I get the classes, but too much error when I use VS
2010, I think the code too old (8-10 years ago).
a9, how to use ilasm?
Thanks

【在 a9 的大作中提到】
: 或者直接ilasm,改完字符串再编译回去。这个最简单。
a9
发帖数: 21638
5
先用ildasm搞成中间代码,就是.il。然后查找那个字符串,替换成正确的,然后再
ilasm编
成exe就行了啊。

VS

【在 A*******n 的大作中提到】
: 直接ilasm?
: would you please tell me more detail?
: I try to use reflector, I get the classes, but too much error when I use VS
: 2010, I think the code too old (8-10 years ago).
: a9, how to use ilasm?
: Thanks

A*******n
发帖数: 625
6
我用下面的语句可是出问题了:
ildasm dwhlib.dll /output:dwhlib.il
error: unable to open 'dwhlib.il' for output.
是不是要先建立.il文件啊

【在 a9 的大作中提到】
: 先用ildasm搞成中间代码,就是.il。然后查找那个字符串,替换成正确的,然后再
: ilasm编
: 成exe就行了啊。
:
: VS

a9
发帖数: 21638
7
不用 ildasm不是有个窗口应用程序吗?

【在 A*******n 的大作中提到】
: 我用下面的语句可是出问题了:
: ildasm dwhlib.dll /output:dwhlib.il
: error: unable to open 'dwhlib.il' for output.
: 是不是要先建立.il文件啊

A*******n
发帖数: 625
8
a9,
ildasm的窗口应用程序不能编辑。 我用命令得到.il文件.
能不能告诉我怎么用ilasm把.il编成dll, 我用:
ilasm c:/myfolder/dwhlib.il /dll
error message: fusion.dll is mising.
我下载了文件,可是要存在什么地方啊

【在 a9 的大作中提到】
: 不用 ildasm不是有个窗口应用程序吗?
A*******n
发帖数: 625
9
I got it. I have to use ilasm in "windows/microsoft.net/framework64/v4.0.
30319/"folder.
thanks
1 (共1页)
进入DotNet版参与讨论
相关主题
新手问个问题哈,关于C#的
中了奇怪的毒.看不到文字
C#写的windows上的应用程序(用数据库)性能行么?
问一个多用户的问题
from C++ to C#
embedded ASP tags?
HELP customize context menu
困猫, 定义test driven programming and ..
C# for Java Programmers - .Net 101 [1]
C# for C++, Java, VB Programmers
相关话题的讨论汇总
话题: dll话题: file话题: ilasm话题: editor