C# Code Analyzer for C, C#, C++ and Java. [closed] - c#

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
Please are there any tools available that will parse my source code to enumerate all class and function dependency for my project (C, C#, C++ or Java) and save it in doc, XML or any other format?
Thank you.

Use reflector:
http://www.red-gate.com/products/reflector/
With this add-in:
http://code.google.com/p/xmi4dotnet/

For .NET, check this out
http://www.ndepend.com/

Understand will handle all those languages. It's not free but a very good tool. Not sure about generating XML, but it'll do a variety of reports. It also supports perl plugins, so you could probably generate whichever format you need for the reports.

Related

Is there any Part-Of-Speech tagger in C#? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
My data pre-processing for data clustering needs part of speech (POS) tagging. I am wondering if there's some library in C# ready for this.
SharpNLP
The best tool for natural language processing implemented in c# is SharpNLP.
SharpNLP is a C# port of the Java OpenNLP tools, plus additional code to facilitate natural language processing.
Embedding IronPython and NLTK
Python provides a package NLTK (Natural Language Toolkit) used widely by many computational linguists, NLP researchers.
One can try to embed IronPython under C# and run NLTK from there.
You can check the following link on how to do it.

Way to interface with Intel's new DRNG (RDRAND instruction) from C#? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'm looking to consume Intel's Digital Random Number Generator (the RDRAND instruction in Ivy Bridge) from a C# assembly. I've looked at cpp libs but I was hoping there was a more "managed" solution. Any ideas?
The best I can find is here:
Rdrand manual and library (Windows* version)
Rdrand manual and library (Linux* and OS X* version)
You can download and compile (link, etc) your own. If you know someone who knows C++, write some extern methods for P/Invokes from C#.

Converting file formats (PDF to TIFF?) [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Hi guys an easy one here,
What are some of the better converts out there which work well and what are the drawbacks of doing a conversions if any? Loss of quality/res/anything?
see here Convert PDF file to images using C#
Only drawback, if it is one, is that you need to install ghostscript.
Also, once in a while gs can't parse a file that adobe can.
There are no open source .net libraries that can do that. Either use ghostscript or imagick (.net wrapper) for the conversion. Ghostscript gives you better quality than imagick.
I believe that abcpdf can do that, but it's a commerical component.
There are many products I found that can do this. Some have a cost while some are free.
I used Black Ice http://www.blackice.com/Printer%20Drivers/Tiff%20Printer%20Drivers.htm. This is afordable at about $40. I didn't buy this one though.
I ended up using a free one called MyMorph.

Reinforcement learning in C# [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I intend to use Reinforcement learning in my project but I do not know much how to implement it..
So I am looking for a library with different RL algorithms that I can use in my C# project..
Thanks
Please Note:
I found NeuronDotNet library for neural networks, I am now looking for RL library..
EDIT: Or a Dot NET library
For who care, I have found this library for socket supported languages (C#):
Rl-Glue
I encourage you to try this solution:
http://sourceforge.net/projects/dotrl/
I am the main author, any comments are welcome :)
If you don't know how to implement them because you lack an understanding of the algorithms, a book by Sutton and Barton should help clear up any issues you have.
http://webdocs.cs.ualberta.ca/~sutton/book/the-book.html
But otherwise, what you found should suit your needs.

Open Source C++ to C# compiler/converter [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
Even if it requires manual input. Is there any good-enough option available?
I don't know anything about this site, but a little googling found this.
If it was in managed C++ or C++/CLI, you could compile it and then disassemble the assembly into C# using a tool like Reflector. Of course, that's not open source but maybe you can find an open source Reflector-style tool?
If it's native C++, that's much more difficult.

Categories

Resources