Sadique
Sadique

Reputation: 22841

How to bring a Message box Window

In VB one can easily do this to bring up a Message box:

MsgBox("Hello")

How to achieve the same in C#?

Upvotes: 0

Views: 155

Answers (1)

Can Gencer
Can Gencer

Reputation: 8885

Simple: You can use MessageBox.Show("Hello");

Upvotes: 4

Related Questions