Is it possible to print something in Unity (2.6) standalone app (Windows)?
I’m using C# so I think if Mono does not allow it then it is not possible.
As far as I know the System.Drawing.Printing class is not available.
Any suggestions?
You can always use a PDF renderer to put out a “virtual” printout. PdfSharp and sharpPDF are a couple of good ones that I’ve used. And you should be able to use their DLL’s - they’re managed plugins, which I’m almost certain that they’re okay under Free.
The only downside is you still depend on the user to print the PDF, but it’s closer than what you had before!