How does One remove All the Dead Methods (i.e. Methods which are not not in use in the Project or Solution) from a very Large Visual Studio Solution.
Asked
Active
Viewed 61 times
0
-
1Use Resharper. It can do this. Code Maid *might* be able to, I've never used it. – Jun 15 '18 at 01:36
-
Thanx Amy. Will try. I have Resharper. Can Resharper Help in Removing all the Comments also, in a Project/Solution. – BeeGees Jun 15 '18 at 01:38
-
Maybe. That sounds like it would fall under Resharper's Cleanup tool. (I'm at home, but have Resharper at work, so I can't be more specific, sorry.) Comments are generally desirable though. – Jun 15 '18 at 01:39
-
2Why would you want to remove all of the comments? – mjwills Jun 15 '18 at 01:39
-
@mjwills actually you are right. I don't think removing comments is essential. I had a thought about How in HTML code for a website Page, the Comments can be seen in the Source of the Webpage within the browser. So I thought on the same lines, that if someone reverse engineers your Dll's, he might be able to see your comments too. But i guess the Compiler itself would not include the comments in its output Dll. – BeeGees Jun 15 '18 at 01:56
-
1Comments are not included in compiled binaries. – Jun 15 '18 at 02:15
-
thanx @Amy. that is an important info. – BeeGees Jun 17 '18 at 05:23