Returns the byte order mark for this Endianness
Declaration Syntax
C# |
public byte[] ByteOrderMark()
Return Value
Two bytes to be placed into a binary Sofu file.
Examples
CopyC#
FileStream outsofu = File.OpenWrite("out.bsofu"); outsofu.Write(Endianness.MachineOrder.ByteOrderMark(),0,2); //.... outsofu.Close();