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'm trying to implement a JSON api for my mobile application. Altough many of samples use System.Json, it is deperecated now. What is its current replacment in .NET?
The most used library is Json.net
http://www.newtonsoft.com/json
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 searching for an open source C#/.NET alternative for code convention, like Checkstyle (Eclipse/Java).
http://checkstyle.sourceforge.net/
It should be possible to create, remove and modify the conventions.
The closest thing I know of is Stylecop
https://stylecop.codeplex.com
https://github.com/StyleCop
You might also like to check out FxCop:
https://msdn.microsoft.com/en-us/library/bb429476
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 trying to figure out how XNode.ReadFrom(XmlReader reader) works, but I can't find source code available for the XNode class online.
It's available in the .NET reference source repository:
https://github.com/Microsoft/referencesource/blob/master/System.Xml.Linq/System/Xml/Linq/XLinq.cs#L1457
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 try to find list of classes in C# which implement IEnumerable<T>. In Java documentation there is section "all known implementations". I need to find the same for C#.
There is no such list in the language documentation.
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 am looking for an IOC-Container that is approved to be used in medical products without the urge to verify it within the project.
Any ideas/suggestions/ressources?
BR
Unity Framework can be approved pretty easy since it offers full Unit Test converage out of the box.
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
Is there any open source implementation of JWZ's threading algorithm in C#?
I've implemented Jamie Zawinski's threading algorithm (as well as the "Ordered Subject" threading algorithm described in rfc5256) in C# in MailKit.