Inserting data taken from a Binary column back into the Database in C#

I had to write some C# code to insert data into a BINARY(16) column in a SQL Server database table as part of a setup task for a test I had to write.  I knew the Binary value I wanted to write as it existed in a column in the table already, which was the value 0xE4D174253E281E7BE02005183E72F136.  Here is the code to put this value back into a byte[] variable that is passed in a parameter which is written to the database:

var vector = new byte[] { 0xE4, 0xD1, 0x74, 0x25, 0x3E, 0x28, 0x1E, 0x7B, 0xE0, 0x20, 0x05, 0x18, 0x3E, 0x72, 0xF1, 0x36 };