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?
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?