/
githubmirror
/
PowerShell
Обзор
Документация
Войти
/
githubmirror
/
PowerShell
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/System.Management.Automation/utils/tracing/IMethodInvoker.cs
20 строк
360 B
Staffan Gustafsson
Enable nullable for `System.Management.Automation.Tracing.IMethodInvoker` (#14157)
16 апр 2021, 20:25
Не верифицирован
16 апр 2021, 20:25
1feed06
Код
Авторство
О чём код?
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. #nullable enable #if !UNIX namespace System.Management.Automation.Tracing { using System; internal interface IMethodInvoker { Delegate Invoker { get; } object[] CreateInvokerArgs(Delegate methodToInvoke, object?[]? methodToInvokeArgs); } } #endif