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 9 months ago.
Improve this question
I've got used to VSC clean up my code, while working with React. Now that I'm using C#, I'm not able to find anything like prettier for this language. I'm looking for some way of setting up my VSCode to do this for me, stuff like: removing white spaces, adding semicolons after each end of the code snippet, broke the lines if the code line was too long (like a long array or parameters). Is there any way for that or was it just one of bonuses of writing in javascript?
Resharper, Code Maid Probably others as well
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
I am looking for a tool or an extension to visual studio that would allow easy conversion between switch case and if else statements.
I have tried to search on google but I mostly find performance discussions related to switch case and if else. I also found that Eclipse or InelliJ have support for this, but it does not work for C#.
You can try RefactoringEssentials
Edit
The repository link is now https://github.com/icsharpcode/RefactoringEssentials.
But it has been shutdown because IDEs now provide refactoring utilities by default. If you need more custom refactoring options, take a look at this repo https://github.com/ironcev/awesome-roslyn#open-source-analyzers-code-fixes-and-refactorings
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
I'm working a on POC which is intended to find sentences in a string input paragraph. Before I get started, I wanted to know whether I could use any existing C# libraries or nuget libraries for this purpose?
How about this from the Stanford Natural Language Processing Group? Although this might be overkill as you can just string Split() from punctuation marks (period, question mark, exclamation point, interrobang, etc.) depending on what you need.
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
In Linux there're many tools to read and convert the comments in code into a HTML/PDF document. I am now working on a .Net project, and I am wondering if we have similar tools to convert the comments in .Net code into a HTML/PDF document?
I tried Google, but did not give me any useful result :( Maybe I am not search with the right keywords.
You might want to look at Sandcastle: http://broadcast.oreilly.com/2010/09/build-html-documentation-for-y.html
Sandcastle is a tool that generates HTML / Visual Studio help bundles based on your code comments and actual code itself.
It's relatively easy to use once you get it set up.
But beware! Big projects can cause OutOfMemoryExceptions.
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
Is there a way I can configure Visual Studio to automatically scan my source code for methods that are over (eg) 300 lines long so that they can be flagged for review (with an aim to refactoring to smaller methods)
I expect any such technique may be language independant, but ideally I'd like to run this over C# code.
Why dont you use some code counter tools which you can search in google for.
http://www.google.com/search?hl=en&source=hp&q=code+counter+tools&aq=f&aqi=&aql=&oq=&gs_rfai=
Is there anything specific you are looking for. Why stopping with 300. Are you developing some contest where you would like to restrict people from writing more than 300 lines of code. Anyway be more clear so that we can help you.
I use this one and i find it very useful.
http://www.codeproject.com/KB/applications/codecounter.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 7 years ago.
Improve this question
Does anyone know of a good .NET port of the OGNL library here? It looks like I could use something like this and the only one I have found so far is on SourceForge here and hasn't been updated since 2005.
I've been looking for something like this as well. Unfortunately, there isn't anything I'm aware of that's feasible for use in a real project. Sorry!
One suggestion that might be of help is to e-mail the author directly. Oftentimes, they abandon the project because they've found that another existing project's work is more in line with what they were trying to accomplish.