所以我有一個字符串數組,其中包含值字節,我想將它們直接移動到字節數組中。我怎樣才能做到這一點?將字符串數組(字節值)轉換爲字節數組
//for example
string read="0 1 0 0 0 255 255 255 255";
byte[] bytes=null;
string[] splitted = read.Split(' ');
for(int i=0;i<splitted.Count();i++)
{
int value = Int32.Parse(splitted[i]);
bytes[i] = (byte)value;
}
problem = bytes;
那麼,你有什麼嘗試? –
請澄清字符串如何包含字節的值 –
@ roryap請參閱更新 –