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

ViewBytesAllocatedMenu_Click() private méthode

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