summaryrefslogtreecommitdiff
path: root/src/System.Private.CoreLib/shared/System/Threading/SendOrPostCallback.cs
blob: 2257ad6b032f290437bdc2dbad4d84d0efd130cb (plain)
1
2
3
4
5
6
7
8
9
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

#nullable enable
namespace System.Threading
{
    public delegate void SendOrPostCallback(object? state);
}