Fix pragma warning restore (dotnet/coreclr#26389)
[mono-project.git] / netcore / System.Private.CoreLib / shared / System / Threading / IThreadPoolWorkItem.cs
blob301c39e30b37d473a9a13874b2fa54a10e7ec33f
1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
5 namespace System.Threading
7 /// <summary>Represents a work item that can be executed by the ThreadPool.</summary>
8 public interface IThreadPoolWorkItem
10 void Execute();