Phone's Adventures in coding

Discuss anything that doesn't fit other categories here.
Post Reply
User avatar
PhoneBook_
Offline
Posts: 118
Joined: June 28th, 2012, 10:58 pm
Location: Indiana
Contact:

Phone's Adventures in coding

Post by PhoneBook_ »

So I decided to start learning C#. So far I've made a button :3

Code: Select all

Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace CS1
{
    public partial class
        private void Form1_Load(object sender, EventArgs e)
        {

        }

        private void button1_Click(object sender, EventArgs e)
        {
            MessageBox.Show("My First Message", "Message", MessageBoxButtons.YesNo, MessageBoxIcon.Asterisk);
        }
    }
}
<FCB2> carlos32123: permissiin to deny the deny of the permission of departure denied

User avatar
Intertoothh
Trustee
Offline
Posts: 1149
Joined: May 24th, 2011, 5:51 am

Re: Phone's Adventures in coding

Post by Intertoothh »

There are tons of online tutorials and movies about C#.

http://www.csharp-station.com/Tutorial.aspx/

or from MS him self
http://msdn.microsoft.com/en-US/vstudio/hh341490

There are many more. Have fun with google, msdn, experts exchange etc etc.
The internet knows it all.
McLaughlinKid wrote:You put roar on everything don't you?

Post Reply