comparison ServerMonitor/Controls/SizeUnitsComboBox.cs @ 17:68d7834dc28e

More comments.
author Brad Greco <brad@bgreco.net>
date Sat, 25 May 2019 15:14:26 -0400
parents 7127d5b5ac75
children
comparison
equal deleted inserted replaced
16:7626b099aefd 17:68d7834dc28e
17 SelectedIndex = 0; 17 SelectedIndex = 0;
18 } 18 }
19 } 19 }
20 20
21 /// <summary>Size units.</summary> 21 /// <summary>Size units.</summary>
22 /// <remarks>The integer values must equal the power of 1024 needed to convert from bytes to each unit.</remarks>
22 public enum SizeUnits { B = 0, KB = 1, MB = 2, GB = 3 } 23 public enum SizeUnits { B = 0, KB = 1, MB = 2, GB = 3 }
23 } 24 }