c# - Framework or tools to analyze .NET code -


i'm looking software can: - analyze .net source code (c# or vb.net) - build repository can queried (ndepend , resharper similar) - allow query repository looking classes, methods, calling methods, , on (like resharper or ndpend) - accessing method's name, local variables name, type, static value , method text

i use creating documentation stored procedure called software.

ndepend wonderful tool analyzes il / source code , allows write queries following one, but doesn't provide access constant value of string (i need them identify stored procedure name / parameters).

from m in types.withfullnamenotin( "core.dbobject").childmethods()  let depth0 = m.depthofisusing("core.dbobject") depth0  >= 0  && !m.name.contains(".ctor") orderby depth0 select new { m, depth0 } 

what final purpose?

i've got big source code in vb.net. track every call stored procedure saving:

the call stored procedure behave follows:

runprocedure("dbo.log", parameters, "log_loadfromid") 

i need extract:

  • the name of vb.net method --> easy using il , metadata information
  • the name of stored procedure --> easy using textual analisys of code
  • the list of parameters passed store --> easy using textual analisys of code

i've tried couldn't find similar this.

edit

i've found here: https://stackoverflow.com/a/10642840/196210

extra details:

i think it's hard find similar software. i've no problem if it's plugin visual studio standalone tool or .net framework. doesn't matter info exported. it's important can use info. need generate report. sure, guess, windows software or .net framework, if find android app doing ok :-)

for requirements, guess you're looking software http://www.nitriq.com/


Comments

Popular posts from this blog

c# - How to get the current UAC mode -

postgresql - Lazarus + Postgres: incomplete startup packet -

javascript - Ajax jqXHR.status==0 fix error -