Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1715,6 +1715,7 @@ internal enum ModuleMatchFailure
NullModuleSpecification,
}

#nullable enable
/// <summary>
/// Used by Modules/Snapins to provide a hook to the engine for startup initialization
/// w.r.t compiled assembly loading.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

#nullable enable

#if !UNIX

namespace System.Management.Automation.Tracing
Expand All @@ -11,7 +13,7 @@ internal interface IMethodInvoker
{
Delegate Invoker { get; }

object[] CreateInvokerArgs(Delegate methodToInvoke, object[] methodToInvokeArgs);
object[] CreateInvokerArgs(Delegate methodToInvoke, object?[]? methodToInvokeArgs);
}
}

Expand Down