Just to be clear, I'm NOT trying to insert into SQL Server directly from C#.
I'd like to convert a C# byte array into a binary string so that I can paste it into a SQL Script like the following:
insert into Files (FileId, FileData) values (1, 0x010203040506)
How can I do this?