1
0
mirror of synced 2024-09-24 11:38:22 +02:00
Switch-Toolbox/Switch_Toolbox_Library/IO/Extensions/ByteArrayExtensions.cs
2019-06-30 18:24:23 -04:00

33 lines
910 B
C#

using System;
using System.Collections.Generic;
using System.IO;
using System.Runtime.Serialization.Formatters.Binary;
using System.Threading.Tasks;
namespace System
{
public static class ByteArrayExtensions
{
public static T[] Slice<T>(this T[] arr, uint indexFrom, uint size)
{
T[] result = new T[size];
Array.Copy(arr, indexFrom, result, 0, size);
return result;
}
public static T[] SubArrayDeepClone<T>(this T[] data, int index, int length)
{
T[] arrCopy = new T[length];
Array.Copy(data, index, arrCopy, 0, length);
using (MemoryStream ms = new MemoryStream())
{
var bf = new BinaryFormatter();
bf.Serialize(ms, arrCopy);
ms.Position = 0;
return (T[])bf.Deserialize(ms);
}
}
}
}