c# Programming Glossary: obytes
Convert an array of different value types to a byte array http://stackoverflow.com/questions/1385829/convert-an-array-of-different-value-types-to-a-byte-array public void ToBytes object data byte buffer byte obytes int offset 0 foreach object obj in data if obj is string obytes.. int offset 0 foreach object obj in data if obj is string obytes System.Text.Encoding.UTF8.GetBytes string obj else if obj is.. string obj else if obj is bool obytes BitConverter.GetBytes bool obj else if obj is char obytes BitConverter.GetBytes..
|