/
githubmirror
/
PowerShell
Обзор
Документация
Войти
/
githubmirror
/
PowerShell
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/System.Management.Automation/engine/ComInterop/CollectionExtensions.cs
41 строка
1 KB
Dongbo Wang
Refresh and enable the `ComInterop` code in PowerShell (#13304)
08 авг 2020, 02:24
Не верифицирован
08 авг 2020, 02:24
4214800
Код
Авторство
О чём код?
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System; using System.Collections.Generic; namespace System.Management.Automation.ComInterop { internal static class CollectionExtensions { internal static T[] RemoveFirst<T>(this T[] array) { T[] result = new T[array.Length - 1]; Array.Copy(array, 1, result, 0, result.Length); return result; } internal static T[] AddFirst<T>(this IList<T> list, T item) { T[] res = new T[list.Count + 1]; res[0] = item; list.CopyTo(res, 1); return res; } internal static T[] ToArray<T>(this IList<T> list) { T[] res = new T[list.Count]; list.CopyTo(res, 0); return res; } internal static T[] AddLast<T>(this IList<T> list, T item) { T[] res = new T[list.Count + 1]; list.CopyTo(res, 0); res[list.Count] = item; return res; } } }