HeapProfiler.MainWindow.OpenSnapshots C# (CSharp) Méthode

OpenSnapshots() public méthode

public OpenSnapshots ( IEnumerable filenames ) : void
filenames IEnumerable
Résultat void
        public void OpenSnapshots(IEnumerable<string> filenames)
        {
            DisposeInstance();

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

            RefreshStatus();
            RefreshSnapshots();
        }
MainWindow