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 parse a C# code base within a Java app. I need to know where classes, methods, members, etc are defined (both filename and line number). What are the best tools/libraries to do this.
It looks like the Doxygen executable could be invoked and then its output XML files could be read.
Are there any other solutions out there?
I'm doing this in Java because its for a specialized application.
From here, there is a CSharp Grammer for ANTLR. I don't know how complete it is, but it includes a preprocessor, parser and lexer.
Related
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
This is a bit of a reach, but i figured its worth a shot. I have been tasked with making a very large program localizable which initially was not written to support it. That means literal strings are everywhere throughout the 387 code files for the project.
Does anyone know of a tool which can generate a list of localizable strings that have the possibility to be displayed on the GUI? There is an error log with literal strings as well that is written to, and I do not want to translate those.
I know its a long shot!
ReSharper provides tools to find localizable strings and more easily move them to resource files.
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
i'm looking for some information about c# compiler like syntax diagrams , lexical analyzer , how it finds tokens , syntax analyzer and ... .
unfortunately I couldn't find anything about this ,
any helps would be highly appreciated.
Microsoft .NET Compiler Platform, knows as Roslyn was open sourced couple weeks ago.
Go to http://roslyn.codeplex.com and get source code for both C# and VB.NET compilers. You can browser the source online at http://source.rosly.codeplex.com as well.
When you have the code, you can generate diagrams, find out how it finds tokens, etc.
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 am having a lot of header files (written in C) that I want to convert into C# code.
The header files contains enums, structs, methods.
I can convert them by hand, but that would take forever, so i was wondering if there is a tool to convert header files into C#.
I have tried PInvoke Interop Assistant but that only works with /clr compiled .dlls.
I have tried SWIG and that works some of the way, it succesfully generates nice enums, but the structs and methods doesn't look very good.
Is there other ways I can convert header .h files?
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
Have you seen library for flexible working with terminal(Unix like)?
I want to implement autocompletion, history, help params in my console application same operations you can see in the Unix terminals.
C#, Mono library.
Thanks.
Here you go, GNU Readline support for Mono, Mono-Readline.
See also, Is there a .Net library similar to GNU readline?
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 have found C++ FQA Lite very edificatory and would like to read more criticism. Could you recommend me something similar but concerning C#, please?
Thanks.
I don't think there is such a document. Most of the problems mentioned in the C++ FQA are not relevant for C# (and other languages).
You might want to read Common programming mistakes for .NET developers to avoid.