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
Is there a .NET library for creating node graphs, one that lets you drag inputs on one node to outputs on another?
This is more or less exactly what you are looking for:
https://github.com/LogicalError/Graph
have a look at QuickGraph and Graph#. HTH.
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 7 years ago.
Improve this question
How can i implement binary decision diagrams (BDD)?
i want to implement the minimization of BDDs based on cultural algorithms and the circuit fault detection by BDDs.
PATDBB may be the thing you are looking for
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 8 years ago.
Improve this question
I need to convert numbers to their text form, I did this a while ago but I believe there should be a good library for this.
example
123 = "One Hundred Twenty Three"
This code golf answer might be of some use.
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 last year.
Improve this question
I saw this post does anyone knows about some C# framework doing similar like dom4j do?
I need to build up XMLs using XPATHs.
You are probably looking for XPath natively part of C# : https://learn.microsoft.com/en-us/dotnet/api/system.xml.xpath?view=net-6.0
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 looking for a good "Wizard" library for Winforms.
WYSIWYG editor preferrable, but not a must.
You pretty much have to role your own. It's not that hard. I wrote one in under 30 minutes.
Here's two links to help you out:
http://www.codeguru.com/csharp/.net/net_general/visualstudionetadd-ins/article.php/c6911/
http://www.differentpla.net/content/2005/02/implementing-wizard-c
DevExpress has an excellent wizard control but most usually do roll their own.
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 free c# library to do the fast fourier transform and its inverse?
Both Math.NET and Aforce are based on the Exocortex.DSP library. http://www.exocortex.org/dsp
I believe this is what you're looking for.