HeapProfiler.MainWindow.OpenSnapshots C# (CSharp) Method

OpenSnapshots() public method

public OpenSnapshots ( IEnumerable filenames ) : void
filenames IEnumerable
return void
        public void OpenSnapshots(IEnumerable<string> filenames)
        {
            DisposeInstance();

            Instance = HeapRecording.FromSnapshots(
                Scheduler, Activities, filenames.OrderBy((f) => f)
            );
            SubscribeToEvents(Instance);

            RefreshStatus();
            RefreshSnapshots();
        }
MainWindow