namespace System.Threading { partial class ThreadPool { internal static void UnsafeQueueUserWorkItemInternal (object callBack, bool preferLocal) => throw new NotImplementedException (); internal static bool TryPopCustomWorkItem (object workItem) => throw new NotImplementedException (); public static bool QueueUserWorkItem (Action callBack, TState state, bool preferLocal) => throw new NotImplementedException (); public static bool UnsafeQueueUserWorkItem (Action callBack, TState state, bool preferLocal) => throw new NotImplementedException (); public static bool UnsafeQueueUserWorkItem (IThreadPoolWorkItem callBack, bool preferLocal) => throw new NotImplementedException (); } }