Simple windowed application: Difference between revisions

m (Modula-3 (added pragma to supress unhandled exception warning))
Line 134:
 
=={{header|C sharp|C#}}==
 
{{works with|C sharp|C#|2.0+}}
{{libheader|System.Windows.Forms}}
<lang csharp>
using System.Windows.Forms;
Line 141 ⟶ 140:
namespace RosettaCode.SimpleWindowedApplication
{
public class RosettaForm : Form
{
private Label label = new Label();
Anonymous user