473,320 Members | 1,939 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,320 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 1618
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: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
0
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you

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.