I'm trying to display a Message Box with both an icon and buttons using only integers / strings. This is VERY simple to do in VB6 (but I want to do it in c#); below is an example.
Call Msgbox("Message Text","Message Title", 32, 64)
As far as C# goes... I know I can declare something as type 'MessageButtons' but I don't want to do that, I am looking for some way to represent the messagebutton as an integer (or as a string). Either one will work just fine.
In short, how can I convert the above code to c#?