Valhalla Legends Archive

Programming => General Programming => Topic started by: Arta on May 23, 2006, 08:04 AM

Title: C# code analyser
Post by: Arta on May 23, 2006, 08:04 AM
Does anyone know of a good C# code analyser? Like CodeSurfer (http://www.grammatech.com/products/codesurfer/index.html), but for C#.

TIA.
Title: Re: C# code analyser
Post by: MyndFyre on May 23, 2006, 11:47 AM
I haven't heard of anything like that.  The closest I can think of would be FxCop, but that's not a code analysis tool, it's a binary analysis tool, and it only verifies that you're complying with best practices.

If you'd like to write one, I may be interested in participating.  ;-)
Title: Re: C# code analyser
Post by: Arta on May 24, 2006, 11:36 AM
hmm, perhaps in the future. I'm concentrating on analysing machine code at the moment. Thanks for the info :)
Title: Re: C# code analyser
Post by: FrOzeN on May 24, 2006, 09:59 PM
ANTS Profiler (http://www.red-gate.com/products/ants_profiler/index.htm) does what you need, though, it costs $295. But it does have a 14 day trial.
Title: Re: C# code analyser
Post by: Maddox on June 05, 2006, 05:12 AM
Quote from: Arta[vL] on May 24, 2006, 11:36 AM
hmm, perhaps in the future. I'm concentrating on analysing machine code at the moment. Thanks for the info :)
C# compiled into machine code? WHERE?!
Title: Re: C# code analyser
Post by: Arta on June 05, 2006, 09:25 AM
err, nowhere that I know of! The c# thing was a little side job, not related to the machine code stuff.
Title: Re: C# code analyser
Post by: K on June 05, 2006, 10:45 AM
Quote from: Maddox on June 05, 2006, 05:12 AM
Quote from: Arta[vL] on May 24, 2006, 11:36 AM
hmm, perhaps in the future. I'm concentrating on analysing machine code at the moment. Thanks for the info :)
C# compiled into machine code? WHERE?!

http://msdn2.microsoft.com/en-us/6t9t5wcf.aspx
Title: Re: C# code analyser
Post by: Maddox on June 06, 2006, 04:04 AM
Quote from: K on June 05, 2006, 10:45 AM
Quote from: Maddox on June 05, 2006, 05:12 AM
Quote from: Arta[vL] on May 24, 2006, 11:36 AM
hmm, perhaps in the future. I'm concentrating on analysing machine code at the moment. Thanks for the info :)
C# compiled into machine code? WHERE?!

http://msdn2.microsoft.com/en-us/6t9t5wcf.aspx
Nice!
Title: Re: C# code analyser
Post by: shout on June 07, 2006, 09:07 AM
When I get home I shall play around with this and IDA for a while. Note this is on the schools VS.NET 2003.

(http://show.imagehosting.us/show/1408202/0/nouser_1408/T0_-1_1408202.PNG)
(Sorry about crappy image hosting site)


------ Build started: Project: Dundracal, Configuration: Debug .NET ------

Preparing resources...
Updating references...
Performing main compilation...

Build complete -- 0 errors, 0 warnings
Building satellite assemblies...
Performing Post-Build Event...
Microsoft (R) CLR Native Image Generator - Version 1.1.4322.573
Copyright (C) Microsoft Corporation 1998-2002. All rights reserved.
Dundracal, Version=0.0.0.2, Culture=neutral, PublicKeyToken=null <debug>



---------------------- Done ----------------------

    Build: 2 succeeded, 0 failed, 0 skipped

Title: Re: C# code analyser
Post by: MyndFyre on June 07, 2006, 10:27 AM
You shouldn't ngen the image as IIRC it becomes impossible to debug.  Once you're done with development you can run it, but it's not a good idea to do it post-every-build.

Alternatively, on 2.0, you can enable the .NET Native Image Generator service.
Title: Re: C# code analyser
Post by: shout on June 07, 2006, 06:57 PM
There is a /debug option... I would think it would allow you to debug. If not they need to name stuff better.