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.
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 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.
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
Do you know any opensource libraries for DJVU? I can't find anything useful.
One of the most rated DjVU library is here:
DjVuLibre
However is in C++.
I created an open source Djvu library which is written in C#. It needs to be optimized a bit, but is fully usable. https://github.com/Telavian/DjvuNet
As for open source DjVuLibre mentioned by Steve, you could find some pointers how to use it from .NET here - Creating simple c++.net wrapper. Step-by-step
As for paid libraries - you could look at: Caminova DjVu SDK for .NET Framework. This is not too expensive.
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
With syntax highlighting and intellisense if possible. Can be paid but better if free. What I need is a control/class/lib/dll that I can use in a Windows Forms project. I don't need a program. I'm using .net 4.0 with Visual Studio 2010. Working on C#.
I think I found the perfect solution: http://www.codeproject.com/KB/library/storm.aspx
Haven't tested much yet but seems to be just great.
Take a look at: C# - Is there any WPF HTML/Javascript/CSS Syntax Editor Control?
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 get into some of the more advanced features of resharper tamplates. I know just enough to be dangerous by looking at some of the existing templates.
What are some of the more advanced features beyond using a variable name in between dollar signs and using $END$ to show where your cursor goes?
What are some good sources on Resharper templates?
The Resharper PowerToys sample code has a project that demonstrates how to use the OpenAPI to create your own custom macro that can be assigned to any $variable$ in a template.
Another built in variable is $SELECTION$ which is handy for creating Surround With templates.
And here's the complete Resharper template authoring reference.