Regarding tool for naming convention and comment [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 9 years ago.
Improve this question
I want to make a tool to check the naming convention and comments standard in C#. Can any one help me on that, what flow I have to follow?

Rather than write your own, why not customise StyleCop:
StyleCop analyzes C# source code to
enforce a set of style and consistency
rules. It can be run from inside of
Visual Studio or integrated into an
MSBuild project.

Related

getting code coverage through specflow [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
Coding C#. Currently using Visual Studo 2013. We use SpecFlow for BDD. Need to understand if there is a way to get a code coverage report from SpecFlow directly? Is there an add on that can get the report through SpecFlow? Or do we have to go to a different testing tool? Thanks.
You are going to need to use another tool. We use OpenCover with our SpecFlow tests on our app.

C# pretty code print library [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
please does anyone know if there is c# library for formatting C based codes? I'm writing some code generators for myself and it would be nice to have code which comes out of my app formatted. I was looking for some but it's hard to find.
Thanks.
Only one I have ever tried with marginal success was.
http://www.gnu.org/software/indent/manual/indent.html

Alternatives to MS Code Contracts Runtime checking (not static checking) [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 am looking for a lightweight alternative to MS Code Contracts. Basically an alternative for Contract.Requires and Contact.Ensure. I don't even care about the rewriting - just something simple I can plug in for checking parameters and results. For example, I did find http://lightcontracts.codeplex.com/ but this is now 4 years old.
Greg
You might check out CuttingEdge.Conditions or Lakad Rules which is part of the Lokad Shared Libraries:

Graphical drag-n-drop designer library for C# applications? [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 have an app that my users use to build objects. For example, they will create a "user" object and add properties (name, address, etc).
I would like to use an environment like the one Visual Studio uses on its class designer or entity designer.
Is there a library out there that will help me with this?
Thanks for any suggestions.
Look at the Visualization and Modeling SDK. This helps you build a graphical DSL. Among other things, it comes with a template for a "class designer" DSL. You can start from there, and modify as needed.

Open Source Graph Layout Library [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 for an open source (GPL, LGPL etc) graph layout library for .net framework, preferably fully managed code. Im not worried about the visualisation aspect of things.
I can find lots of them for Java, but none for .net...
Thanks!
http://graphsharp.codeplex.com/ (Nice "visualisation aspect of things" :)
(...and for the "oldie" GraphViz, you can get no less than 3 language bindings for C#)
http://satsumagraph.sourceforge.net
Has force-directed graph layout (charged particles & springs model).
http://zedgraph.org/wiki/index.php?title=Main_Page
Tried it before...works great.

Categories

Resources