C# Pretty Printer?

  • Thread starter Thread starter John Wood
  • Start date Start date
J

John Wood

Does anyone know of a good, free C# pretty-printer?

One that outputs to HTML would be good. If it came with C# source it would
be even better.
 
I'm working on one, but I guess that's not what you want to hear, and I'm
afraid that it will be closed source...

Luke Church
 
John Wood said:
Does anyone know of a good, free C# pretty-printer?

One that outputs to HTML would be good. If it came with C# source it would
be even better.

Might be a long shot, but you could try looking for some of the open source
Java products. You could probably easily download the code and modify for c#
if it's not close enough already. Brief google searches found things like:

http://www.gnu.org/software/java2html/java2html.html - Java2Html (does what
it says on the tin)

http://www.tiobe.com/jacobe.htm - Free Customizable Command Line Beautifier

HTH

Tobin Harris
 
Well I don't care much for the source if it works well. It just isn't
something I'd imagine paying for... unless it could really add something
(like printing a graph of the project structure, a flow chart or something).
 
Thanks for the suggestions... I'll give them a look, or look at other Java
pretty printers.
 
John,

You can visit http://www.prettycode.com. As far as I know, they expect to
release a .NET version of their PrettyCode.Print utility. It's not free,
however - but you get what you pay for. I don't know about HTML either but
their current version for VB6 can produce RTFs.
 
Back
Top