1

In a Windows command-line window I can type:

c:\Windows\system32>echo Hello > \\.\LCLD9\ 

And output "Hello" to a USB LED display (logic controls lt9000U). How would this be handled with C# in a Windows Forms application?

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
user1634700
  • 165
  • 3
  • 12

1 Answers1

0

As far as I know there are no built in piping/cmd features in C#. You will need to pass args to cmd - see related question.

Community
  • 1
  • 1
user1111380
  • 551
  • 2
  • 6
  • 17
  • `ProcessInfo` most certainly support piping, but there's no program being executed here, just a text string and a file. – Ben Voigt Jul 19 '14 at 18:56