HeapProfiler.MainWindow.OpenSnapshots C# (CSharp) 메소드

OpenSnapshots() 공개 메소드

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

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

            RefreshStatus();
            RefreshSnapshots();
        }
MainWindow