I want to get Maximum Dpi of installed or selected printer. I tried
PrinterSettings ps = new PrinterSettings();
MessageBox.Show(ps.PrinterResolutions.ToString());
and I get this output: System.Drawing.Printing.PrinterSettings+PreinterResolutionCollection
(The desired output is 600×600).
Using LINQ: