问题
Is there a way to find ILDASM.exe from Visual Studio 2008?
I know the location "C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\Bin", but I want it through Visual Studio 2008.
回答1:
I'm not sure what you mean by "wanting it through Visual Studio", but you can easily add it to the Visual Studio Tools menu with the "Tools -> External Tools" dialog.
回答2:
If you have the SDK:
C:\Program Files\Microsoft SDKs\Windows\v6.0A\bin
Personally, though, I'd use .NET Reflector instead...
I tend to associate this with bin/exe via the "Open With..." dialog in the Solution Explorer; add it to that, job done.
回答3:
The .NET Framework 3.5 that comes with Visual Studio 2008 is more or less only an extension (new assemblies) to .NET 2.0. Therefore the directory structures seem to be different.
On my machine, the new ILDASM.exe is located in "C:\Program Files\Microsoft SDKs\Windows\v6.0A\bin".
来源:https://stackoverflow.com/questions/1068193/ildasm-exe-through-visual-studio-2008