diff --git a/ICD.Common.Utils/Extensions/EnumerableExtensions.cs b/ICD.Common.Utils/Extensions/EnumerableExtensions.cs
index 74e69ba..865d2ee 100644
--- a/ICD.Common.Utils/Extensions/EnumerableExtensions.cs
+++ b/ICD.Common.Utils/Extensions/EnumerableExtensions.cs
@@ -578,6 +578,23 @@ namespace ICD.Common.Utils.Extensions
return extends.Where(i => !comparer.Equals(item, i));
}
+ ///
+ /// Copies all the elements of the current one-dimensional array to the specified one-dimensional array
+ /// starting at the specified destination array index. The index is specified as a 32-bit integer.
+ ///
+ ///
+ ///
+ ///
+ ///
+ public static void CopyTo(this IEnumerable extends, T[] array, int index)
+ {
+ if (extends == null)
+ throw new ArgumentNullException("extends");
+
+ ICollection collection = extends as ICollection ?? extends.ToArray();
+ collection.CopyTo(array, index);
+ }
+
///
/// Returns the sequence as a IcdHashSet.
///