Boo.Lang.Runtime.DispatcherCache.Clear C# (CSharp) Method

Clear() public method

Removes all Dispatchers from the cache.
public Clear ( ) : void
return void
        public void Clear()
        {
            lock (_cache)
            {
                _cache.Clear();
            }
        }
DispatcherCache