How can we help you today? How can we help you today?
Bart Read
Hi Paul, This has now been fixed. Please refer to the early access build announcement in the main forum for download details: http://www.red-gate.com/MessageBoard/viewforum.php?f=86 Thanks, Bart / comments
Hi Paul, This has now been fixed. Please refer to the early access build announcement in the main forum for download details:http://www.red-gate.com/MessageBoard/viewforum.php?f=86 Thanks, Bart
0 votes
Hi Paul, Thanks for the offer of setting up a remote session; it might well prove useful. Let me have a chat to Stephen about it and we'll see if we can sort it out. Andrew, who wrote the click navigation, is away today so I'll ask him about this when he's back in the office. The answer as to how we do it is a bit of both. Our source code view provides us with an AST for the currently loaded source file (for both C# and VB at any rate). From this we can grab all the methods, and for each method the execution info. We then try to stitch the execution info together with the code in the method based on method names, class names etc., but because we don't have a full code model for the profiled application this isn't 100% accurate. The problem is that without full type information for everything, any matching we do is necessarily going to be a bit on the fuzzy side. It could be that there's just a problem resolving the target because there are two calls to a method with the same name, however that would be surprising because the parameter counts are different, and in any case the method calls would appear at different IL offsets, which would map to different lines in the source file. When you click on the version that takes a string, do you get a popup appearing with two different methods on it, or does it just take you straight to the source code? Thanks, Bart / comments
Hi Paul, Thanks for the offer of setting up a remote session; it might well prove useful. Let me have a chat to Stephen about it and we'll see if we can sort it out. Andrew, who wrote the click nav...
0 votes