Blog sul mondo C# e non solo [ITA]
static T[] SubArray<T>(this T[] data, int index, int length) { T[] result = new T[length]; Array.Copy(data, index, result, 0, length); return result; }
Nessun commento:
Posta un commento