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 3 years ago.
Improve this question
We're looking for a syntax checker for C#, something like Checkstyle for Java. Does anyone have any recommendations for any tools that we can use? Ideally it would have a plugin to Visual Studio 2008.
FxCop or StyleCop.
You mean, something like StyleCop? There is a plugin for ReSharper as far as I know. You can find it at StyleCopForResharper. Works like a champ btw.
The main option for .Net is StyleCop. It can be used from within Visual Studio. See also the StyleCop Blog.
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 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 4 years ago.
Improve this question
Im writing a customised C# application to communicate with BACnet devices. Is there any BACnet protocol stack written in c# which i can download the source code?
you can try bacnet stack with source code:
http://bacsharp.sourceforge.net/
Not that I've tried it, but there's finally a NuGet package now, that is probably worth evaluating.
(But BacSharp is the husk/seed of a good project/provision.)
I'd also recommend the (advanced & free) VTS tool (- YABE is a sensible tool for a more high-level visual view).
for anonymous checkout try:
svn checkout http://svn.code.sf.net/p/bacnet/code/tags/bacnet-stack-0-8.2/
This is what worked for me.
0.8.2 is the latest stable version as of Aug 23 2014.
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.
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 2 years ago.
Improve this question
Can anyone recommend a good .NET based lexical analyser, preferably written in C#?
ANTLR has a C# target
Download the Visual Studio SDK; it includes a managed parser/lexer generator.
(Edit: It was written on my university campus, apparantly :D)
gplex and cs_lex