Este foi nosso primeiro programa usando a linguagem C# e feito em console:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HelloWorld
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Helo World");
Console.ReadLine();
}
}
}
Segue a versão deste programa em objeto.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Pg217_08_16
{
public partial class frm_hello : Form
{
public frm_hello()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
MessageBox.Show("Hello World");
}
}
}
Nenhum comentário:
Postar um comentário