Aegis.Threading.NamedThread.DisposeAll C# (CSharp) Method

DisposeAll() static private method

static private DisposeAll ( ) : void
return void
        internal static void DisposeAll()
        {
            lock (Threads)
            {
                foreach (var item in Threads.Items)
                    item.Item2.Dispose();
            }
        }