Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I have applied code obfuscation through ConfuserEx tool on .NET C# project exe open immediately before applying obfuscation but after applying obfuscation it take 1-3 minutes to open and code obfuscation also reduce size of exe from 59MB to 41MB. Please suggest me new obfuscation tool or tell me proper use of ConfuserEx.
I can only try to answer the second part:
File size reduction is somewhat expected, because obfuscation removes all debug information and renames all method and variable names to very short ones (i.e. A, B, C). In your case, it's pretty significant, though.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
My C# application does a lot of ClientHttp calls on many Task/Async/Await methods inside Paraller.ForEach block, but it performance is not perfect (application seems to slow down in time). How to investigate where are issues. What tools should be used? How to use these tools like Profiler?
External links are welcome.
How my application works:
It downloads images and zipped images from backend, unzip them if needed and saves them in directories on local hard drive. It downlaods about 7GB of images.
Check this samples from msdn ...
https://msdn.microsoft.com/en-us/library/mt674882.aspx
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
Maybe this question doesn't make so much sense but I was wondering if there is out there any Static Code Analyzer (C/C++/C#) that warns me about issues on source code files without building the project itself...
I would love to flag the kind of issues that get flagged by Static Code Analyzers like FXCop (https://msdn.microsoft.com/en-us/library/bb429379(v=vs.80).aspx) without compiling...
Would that be possible somehow?
EDIT: Forgot to mention that I would like to do the Static Analysis out of the IDE which means I am looking for something standalone that doesn't need to be plugged into the IDE at all.
StyleCop https://stylecop.codeplex.com/
It scans your source code files and not the managed code. Meaning you need not compile it beforehand.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
We were using a product from a vendor provided to us in form of dll's. Now we are taking over that vendor product's source code. Our core application is dependent on those vendor provided dll's. We want to make sure that the source code that is provided to us is the same as of the dll's we are using. Otherwise our code can break and that could cost us big time. Can anyone please suggest a tool or a way we can compare the source code with dll's.
One way is that we can compile and publish the dll's and then compare the dll's, but that is going to be a huge task as there are multiple packages included in the base product including some aspx and html pages. We are looking for a quick and clean way to perform the task.
Any help 'd be much appreciated. Thanks
For me the only good way is to ask the vendor to provide the compilation environnement as well as the source code (using a Virtual Machine for example).
Recompilling the source, then comparing the DLLs is the only good way.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I am currently doing a project capturing audio stream from microphone.
The stream I captured was full of background noise. I am wondering if there is library provided for removing the noise.
If not, what kinds of algorithm I should look for?
I haven't found a good library for audio noise reduction. However SoX is a really good open source command line sound processing utility. Check out their documentation page, specifically noiseprof and noisered.
What I would suggest doing to integrate it into your application, is to take the SoX executable and make it an embedded resource in your application. Then whenever you need to perform noise reduction, extract the resource to a temporary directory and call Process.Start() in order to execute SoX.
Hope this helps!
It depends a bit on what kind of noise you have. Some noise can be removed by simple frequency filtering, in which case what you need is an equalizer. Found one for you here
Commercial libraries also exist, here's one called Audiolab
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
I need to minify some C# code in a handful of Silverlight .cs and .xmal files. What are your tips for maintaining one code base and running a "tool" to generate minified code for a project?
Are there any tools (like Resharper) that will do this? If not fully, partially or assist in some way...
EDIT: I realize that there is no need for C# minification. This is an exercise that I'm doing that does not make sense on the face of it. (This is not homework.)
How about a source-code obfuscator? They generally abbreviate names, etc - and certainly remove white space.
For example, here, with demo here (although you'd probably want to disable the string encoding if possible). Note that this isn't a direct recommendation: this is just the first hit I got for C# code obfuscator.
Is that necessary? It was my understanding that the compiled .Net assembly would be sent across the wire, not the C# (or whatever language) source code.
Here are two "Lessons Learned" posts from other 10k entrants:
Thoughts on the MIX 10K challenge
MIX09 10K Smart Coding Challenge