10 lines
203 B
C#
10 lines
203 B
C#
|
|
using System;
|
||
|
|
using System.Windows.Forms;
|
||
|
|
|
||
|
|
class Program {
|
||
|
|
static void Main(string[] args) {
|
||
|
|
Application.EnableVisualStyles(); //Optional.
|
||
|
|
MessageBox.Show("Goodbye, World!");
|
||
|
|
}
|
||
|
|
}
|