What is difference between MessageBoxIcon.Exclamation and MessageBoxIcon.Warning?
There is no difference, they are aliases for the same number (48).
public enum MessageBoxIcon
{
   None = 0,
   Error = 16,
   Hand = 16,
   Stop = 16,
   Question = 32,
   Exclamation = 48,
   Warning = 48,
   Asterisk = 64,
   Information = 64,
 }
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With