Localization tool to find all UI strings [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 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.

Related

Needed some diagrams and information about C# compiler [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
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.

Parsing C# in Java Application [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 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.

Library for displaying music notation [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
Is there a simple way, whether through a web service or just a library, to write/display music notation with C#? I have some data and am wondering if there is a way to show a staff with the given notes on it.
I've looked into MusicXML, but if I understand it correctly, it is purely a way to store the data - displaying it on a staff is a separate task. Short of manually using shapes (would be a lot of work) in HTML Canvas or WPF or what-have-you, is there some way to accomplish this?
Long list of background information and libraries for Java can be found here: https://stackoverflow.com/questions/5525959/are-there-any-music-notation-rendering-libraries-for-java.
A similar C# question can be found here: Draw a music staff in C#.
Here's an article describing how to show MusicXML notation with WPF: http://www.codeproject.com/Articles/89582/PSAM-WPF-Control-Library.

Free Library for Sentiment Analysis (on Tweets) 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 need a simple Sentiment Analysis library to use in my ASP.NET application. The library should be able to work on short strings (Twitter tweets have a maximum length of 140 characters long), and only needs to classify the tweets as positive or negative (and perhaps neutral, but not necessary).
I have found many similar questions on Stack Overflow, but haven't managed to find a class library in C# that quite fits my requirements.
I found this really cool webservice called uClassify that does exactly what I need, thanks to the post at Algorithm to determine how positive or negative a statement/text is.
But I want a library, not a web service. I will be processing thousands of tweets and the overhead of making HttpRequests is too much.

Good Tutorial for Resharper Templates [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 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.

Categories