473,395 Members | 2,467 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,395 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 1624
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
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
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
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
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
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,...

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.