Reputation: 22841
In VB one can easily do this to bring up a Message box:
MsgBox("Hello")
How to achieve the same in C#?
C#
Upvotes: 0
Views: 155
Reputation: 8885
Simple: You can use MessageBox.Show("Hello");
Upvotes: 4