G
Guest
What is the simplest way to combine one byte[] with another?
for example if i have
byte[] header = Encoding.ASCII.GetBytes("this is the header");
and
byte[] body = Encoding.ASCII.GetBytes("this is the body");
how can i combined them into one?
TIA,
Vinny
for example if i have
byte[] header = Encoding.ASCII.GetBytes("this is the header");
and
byte[] body = Encoding.ASCII.GetBytes("this is the body");
how can i combined them into one?
TIA,
Vinny