网上演练
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
347 B

// Needed for NET35 (ThreadLocal)
#if !NET_4_6
using System;
using System.Collections.Generic;
namespace LinqInternal.Threading
{
internal interface IThreadLocal<T> : IDisposable
{
bool IsValueCreated { get; }
T Value { get; set; }
T ValueForDebugDisplay { get; }
IList<T> Values { get; }
}
}
#endif