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

ViewBytesAllocatedMenu_Click() 개인적인 메소드

private ViewBytesAllocatedMenu_Click ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
리턴 void
        private void ViewBytesAllocatedMenu_Click(object sender, EventArgs e)
        {
            SnapshotTimeline.ItemValueGetter = GetBytesAllocated;
            SnapshotTimeline.ItemValueFormatter = FormatSizeBytes;
        }
MainWindow