我想扩展 System.Array 类来做这样的事情:
public static class Extensions
{
public static void Append( this byte[] dst, byte[] src)
{
Array.Resize<byte>(ref dst, dst.Length + src.Length);
Array.Copy(src, 0, dst, dst.Length - src.Length,src.Length);
return;
}
}
但是“this”是不可能被引用的......并且在返回时它会像开始一样返回。