Is there a Json2Csharp.com for Xml? [closed] - c#

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
I use Json2Csharp.com all the time. Saves me so much work.
Is there a similar tool for XML? (like Xml2Csharp.com)?

There is a XML Schema Definition Tool (Xsd.exe) for such purposes. It is not a website, but could help you to solve your problem.

The same site now supports xml conversion, hope that helps
https://json2csharp.com/xml-to-csharp

Yes, it's there http://xmltocsharp.azurewebsites.net/
and it is more itteligent converter than xsd.exe or Visual Studio "Special Paste" (for xml with many fields it creates pure class with strong typed fields instead class with array of System.Object and Enum for identification fields like VS or xsd.exe do)

Related

How to convert .Net comments in RST format into HTML? [closed]

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.

Java AST parser for .Net [closed]

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 a parser, that can extract the abstract syntax tree from a java code. The parser must work under .Net - I need to run it from C#. I know about ANTLR, but I did not find any grammar, that can generate AST as a tree (instead of a flat list).
Can anyone help me ?
Thank you.
Ain't sure if it helps, but JavaCC can generate the AST for you, it has a few Java grammar definition (like this, but take a look on the alternatives), and the developers recently added C++ code generation. That you might be able to link with C#.

RTF document builder [closed]

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
I'm creating a program for new hires where I type in their name and some other info and it spits out a welcome/new employee info document.
I seem to remember there was something along the lines of there being a document object that I could use (similar i guess to StringBuilder).
Is there such a thing already included in the .NET Framework 2 or 3?
Assuming you're just using a text file, you can just use the StringWriter class in the System.IO Namespace.
(One of the constructors of a StringWriter object is StringBuilder)
No there is not!

.NET port of OGNL Library [closed]

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.

Recommendations for a good C#/ .NET based lexical analyser [closed]

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

Categories