private static ulong ConvertMegabytesToBytes()

in VisualProfiler.cs [719:722]


        private static ulong ConvertMegabytesToBytes(int megabytes)
        {
            return ((ulong)megabytes * 1024UL) * 1024UL;
        }