[Offtopic] Code to scheme tool

  • Thread starter Thread starter Tom
  • Start date Start date
T

Tom

Hi folks,

I'm looking for something to make from my c# project code an scheme with
connections between functions.
It would be than easy to find redundand functions.

An very very very example:

void Main(int t)
{
int f=calculate(t);
}

int calculate(int x)
{
return t*t;
}

would be transformed to:

Main =======>calculate


Do you know any soft that could approach this goal?
 
Tom said:
Hi folks,

I'm looking for something to make from my c# project code an scheme with
connections between functions.
It would be than easy to find redundand functions.

FxCop will find unused functions (and much more besides), I believe.
 
Back
Top