I suspect this may apply to several programming languages, but in this context I mean .NET.
When I use System.Diagnostics.Process.Start, I can include an object as an argument System.Diagnostics.ProcessStartInfo. One of the properties of the ProcessStartInfo class is Verb(string type). There is also a string [] property for Verbs, which appears to contain a list of valid values for Verb.
I noticed that the array Verbshas a value for "Print" and a value for "PrintTo". What is the difference between the two? I tested both, and both of them seem to make the file print to my printer by default.
source
share