Hi,
Please refer below code.
C#
string FilePath =@"C:\Users\shashikant\Desktop\Test.txt"
ProcessStartInfo info = new ProcessStartInfo(FilePath);
info.Verb = "Print";
info.CreateNoWindow = true;
info.WindowStyle = ProcessWindowStyle.Hidden;
Process.Start(info);
I hope this will help you out.