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

ViewAllocationCountMenu_Click() 개인적인 메소드

private ViewAllocationCountMenu_Click ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
리턴 void
        private void ViewAllocationCountMenu_Click(object sender, EventArgs e)
        {
            SnapshotTimeline.ItemValueGetter = GetAllocationCount;
            SnapshotTimeline.ItemValueFormatter = FormatCount;
        }
MainWindow