473,409 Members | 1,967 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,409 software developers and data experts.

Is there a tool that finds unused methods in code?

Such a tool would be very great. We have a huge project with changing
personal and so there is a lot of code that is no longer used or was never
used.

--
cody

[Freeware, Games and Humor]
www.deutronium.de.vu || www.deutronium.tk
Nov 22 '05 #1
8 1625
Hi Cody,

Which language? If it is VB / VB.NET than you could try
http://www.aivosto.com/project/project.html. I'm afraid I can't actually
tell you how good/bad the results are yet as we have only just started
evaluating this product ourselves.

Gary

"cody" <pl*************************@gmx.de> wrote in message
news:Ou**************@TK2MSFTNGP09.phx.gbl...
Such a tool would be very great. We have a huge project with changing
personal and so there is a lot of code that is no longer used or was never
used.

--
cody

[Freeware, Games and Humor]
www.deutronium.de.vu || www.deutronium.tk

Nov 22 '05 #2
Hi Cody,

Which language? If it is VB / VB.NET than you could try
http://www.aivosto.com/project/project.html. I'm afraid I can't actually
tell you how good/bad the results are yet as we have only just started
evaluating this product ourselves.

Gary

"cody" <pl*************************@gmx.de> wrote in message
news:Ou**************@TK2MSFTNGP09.phx.gbl...
Such a tool would be very great. We have a huge project with changing
personal and so there is a lot of code that is no longer used or was never
used.

--
cody

[Freeware, Games and Humor]
www.deutronium.de.vu || www.deutronium.tk

Nov 22 '05 #3
> Which language? If it is VB / VB.NET than you could try
http://www.aivosto.com/project/project.html. I'm afraid I can't actually
tell you how good/bad the results are yet as we have only just started
evaluating this product ourselves.

Gary

"cody" <pl*************************@gmx.de> wrote in message
news:Ou**************@TK2MSFTNGP09.phx.gbl...
Such a tool would be very great. We have a huge project with changing
personal and so there is a lot of code that is no longer used or was never used.

Iam looking for a tool for C#.

--
cody

[Freeware, Games and Humor]
www.deutronium.de.vu || www.deutronium.tk
Nov 22 '05 #4
> Which language? If it is VB / VB.NET than you could try
http://www.aivosto.com/project/project.html. I'm afraid I can't actually
tell you how good/bad the results are yet as we have only just started
evaluating this product ourselves.

Gary

"cody" <pl*************************@gmx.de> wrote in message
news:Ou**************@TK2MSFTNGP09.phx.gbl...
Such a tool would be very great. We have a huge project with changing
personal and so there is a lot of code that is no longer used or was never used.

Iam looking for a tool for C#.

--
cody

[Freeware, Games and Humor]
www.deutronium.de.vu || www.deutronium.tk
Nov 22 '05 #5
In that case, you could try one of these...

http://www.platformdev.com/AO3_pdQuick.htm
http://www.componentsource.com/catal...on=8163&bhcp=1

Gary

"cody" <pl*************************@gmx.de> wrote in message
news:ue**************@tk2msftngp13.phx.gbl...
Which language? If it is VB / VB.NET than you could try
http://www.aivosto.com/project/project.html. I'm afraid I can't actually
tell you how good/bad the results are yet as we have only just started
evaluating this product ourselves.

Gary

"cody" <pl*************************@gmx.de> wrote in message
news:Ou**************@TK2MSFTNGP09.phx.gbl...
Such a tool would be very great. We have a huge project with changing
personal and so there is a lot of code that is no longer used or was

never used.

Iam looking for a tool for C#.

--
cody

[Freeware, Games and Humor]
www.deutronium.de.vu || www.deutronium.tk

Nov 22 '05 #6
In that case, you could try one of these...

http://www.platformdev.com/AO3_pdQuick.htm
http://www.componentsource.com/catal...on=8163&bhcp=1

Gary

"cody" <pl*************************@gmx.de> wrote in message
news:ue**************@tk2msftngp13.phx.gbl...
Which language? If it is VB / VB.NET than you could try
http://www.aivosto.com/project/project.html. I'm afraid I can't actually
tell you how good/bad the results are yet as we have only just started
evaluating this product ourselves.

Gary

"cody" <pl*************************@gmx.de> wrote in message
news:Ou**************@TK2MSFTNGP09.phx.gbl...
Such a tool would be very great. We have a huge project with changing
personal and so there is a lot of code that is no longer used or was

never used.

Iam looking for a tool for C#.

--
cody

[Freeware, Games and Humor]
www.deutronium.de.vu || www.deutronium.tk

Nov 22 '05 #7
> In that case, you could try one of these...

http://www.platformdev.com/AO3_pdQuick.htm

http://www.componentsource.com/catal...on=8163&bhcp=1

thank you
--
cody

[Freeware, Games and Humor]
www.deutronium.de.vu || www.deutronium.tk
Nov 22 '05 #8
> In that case, you could try one of these...

http://www.platformdev.com/AO3_pdQuick.htm

http://www.componentsource.com/catal...on=8163&bhcp=1

thank you
--
cody

[Freeware, Games and Humor]
www.deutronium.de.vu || www.deutronium.tk
Nov 22 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: cody | last post by:
Such a tool would be very great. We have a huge project with changing personal and so there is a lot of code that is no longer used or was never used. -- cody www.deutronium.de.vu ||...
20
by: jvankay | last post by:
Does any C guru out there know of a C pre-processing tool that will allow limited pruning of C source based on a single #define variable. That is, in the code fragment below: XXX #ifdef...
5
by: Venkat | last post by:
Hi, My application is splitted into more than one assembly. And I want to clean up the methods which are not called or not used among any of the assemblies. And also I want to remove the code...
9
by: ThazKool | last post by:
I am just wondering if all the methods that are never called upon during a programs execution are removed when optimizing. For example you have: class FooA { void a(); ... void z(); }
9
by: Martijn Mulder | last post by:
A nice feature of the csc.exe compiler is that it warns you if a variable is declared but never used. But unused methods are not flagged, even when the warning level is set to 4.
6
by: Frank Neuhaus | last post by:
Hi sorry - I guess this is slightly OT but still ;) Iam looking for some tool (win32 please) that can find unused member functions / member variables in my project. Does anyone have any...
8
by: Frank Rizzo | last post by:
Is there a setting in VS2005 to quickly locate methods that are unused (maybe through compiler warnings)? If not, any utilities out there that do that? Thanks
0
by: Fabian Wein | last post by:
Hi, I hope this is not too off-topic! Is there a free tool that scans for unused methods? Maybe a (gnu) linker option? Thanks, Fabian
2
by: Ming | last post by:
Hi folks, Is there a handy tool to find which methods are not used at all in a php project? Thanks,
2
by: Julek | last post by:
Hi, is there a tool which parses cpp and h files, finds unused things, and deletes them from code? For example unused methods, enums, enum values, defines... It doesn't have to be sophisticated...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.