SizeSuffix method was moved to own section

This commit is contained in:
Alexander 2019-10-29 20:41:13 +02:00
parent 382164d73f
commit f582da98c7

View file

@ -50,6 +50,7 @@ protected override void WndProc(ref Message m)
base.WndProc(ref m);
}
#region Methods
static string SizeSuffix(long value)
{
if (value < 0) { return "-" + SizeSuffix(-value); }
@ -65,7 +66,6 @@ static string SizeSuffix(long value)
return string.Format("{0:n1} {1}", dValue, SizeSuffixes[i]);
}
#region Methods
private void DecryptAES()
{
EnterKeyForm enterKeyForm = new EnterKeyForm
@ -1774,8 +1774,6 @@ private void VariablesMainMenu_Click(object sender, EventArgs e)
Debug.WriteLine("EditorMenuStrip: " + contextMenu.Enabled);
#endif
}
#endregion