Comments
Sort by recent activity
Thanks for reporting this. I've logged it as RP-712. / comments
Thanks for reporting this. I've logged it as RP-712.
Hi.
System.Collections.Generic.List is defined in mscorlib. The easiest way to find it is to use the Type Search - hit F3 and type List<T> into the text area.
I assume your version of vs08 isn't the express version?
Can you have a look in the registry under HKEY_LOCAL_MACHINE\Software\Microsoft\VisualStudio\9.0 and check for an ApplicationId key,
HKEY_LOCAL_MACHINE\Software\Wow6432Node\Microsoft\VisualStudio\9.0 and check for an ApplicationId key,
and then under HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\9.0 and check for a VisualStudioLocation key?
Thanks / comments
Hi.
System.Collections.Generic.List is defined in mscorlib. The easiest way to find it is to use the Type Search - hit F3 and type List<T> into the text area.
I assume your version of vs08 isn't th...
There is another setting that is changed when you use Reflector Pro that is relevant here. The "Enable Just My Code" on the Tools/Options Debugging/General dialog. The setting of this would have affected whether the exception thrown inside mscorlib stops in the debugger. / comments
There is another setting that is changed when you use Reflector Pro that is relevant here. The "Enable Just My Code" on the Tools/Options Debugging/General dialog. The setting of this would have af...
Hi.
I don't think that's anything to do with Refector. If you take a simple console application with the code:
class Program
{
static void Main(string[] args)
{
XmlSerializer serializer = new XmlSerializer(typeof(List<Program>));
}
}
If you check Debug/Exceptions "CLR Exceptions" Thrown you get the FileNotFoundException that you mention ie it is supposed to happen and usually the code handles it and moves on. However, if the debugger is set to break when the exception is thrown, then it stops at that point. There is a "Reset All" button on the Debug/Exceptions dialog that will reset the break state to the default which would continue over this exception. / comments
Hi.
I don't think that's anything to do with Refector. If you take a simple console application with the code:
class Program
{
static void Main(string[] args)
{
XmlSerializer serializer = new XmlSe...
Thanks - I'll take a look. / comments
Thanks - I'll take a look.
We've done some work on the lambda methods so the decompilation and stepping should be much improved in subsequent EAPs. / comments
We've done some work on the lambda methods so the decompilation and stepping should be much improved in subsequent EAPs.
Hi.
Can you give a few more details - which version of Visual studio, which Rx libraries and what settings for the decompile?
I just tried 1.0.4.0 on 2010 using C# 3.0 and the decompile gave 124, 59, and 674 methods successfully decompiled from CoreEx, Interactive and Reactive respectively.
Thanks. / comments
Hi.
Can you give a few more details - which version of Visual studio, which Rx libraries and what settings for the decompile?
I just tried 1.0.4.0 on 2010 using C# 3.0 and the decompile gave 124, 5...
You could try to use the Tools->External Tools menu item to find out where the reflector.exe is being referenced, and modify it to point to the new local directory. / comments
You could try to use the Tools->External Tools menu item to find out where the reflector.exe is being referenced, and modify it to point to the new local directory.
We should be releasing an EAP (early access) version of the next release within a couple of weeks. / comments
We should be releasing an EAP (early access) version of the next release within a couple of weeks.
Thanks for the various examples you sent through to me. I logged the bug as RP-709.
There was a problem with one of the optimisations that was moving the declaration of a closed over variable to make it part of the assignment of the variable. This is now fixed. / comments
Thanks for the various examples you sent through to me. I logged the bug as RP-709.
There was a problem with one of the optimisations that was moving the declaration of a closed over variable to ma...