Jump to content

Массивы и их объединение (конкатенация)


Bolmazov
 Share

Recommended Posts

))) Доки по C# меньше чем по PHP, удивило. А такая задачка как: "Объединить два объекта" на PHP звучит по детски. На C# же я задолбался выдумывать и всё равно не выходит.

Задача: надо вернуть объект который состоит из такого объединения объектов: id + UserData + UserData

 public object PackData(int id, ref object UserData)
{
byte[] byteId = BitConverter.GetBytes(id);
byte[] byteData = (byte[])UserData;
byte[] result = new byte[byteId.Length + byteData.Length * 2];
byteId.CopyTo(result, 0);
byteData.CopyTo(result, byteId.Length);
byteData.CopyTo(result, byteData.Length);
return result;
}

Такое чудо не работает.

Edited by Bolmazov
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy