What is the different between MsgBox and MessageBox.Show in VB.Net?
Thank you,
Printable View
What is the different between MsgBox and MessageBox.Show in VB.Net?
Thank you,
MessageBox.Show is the proper .NET way. MsgBox is part of the Microsoft.VB namespace that was thrown in at the last minute for those people that whined that VB.NET was too different. Do not expect the Microsoft.VB classes to be supported in the future, so avoid it if you can.
MsgBox is old school.