Page 1 of 1

Phone's Adventures in coding

Posted: August 7th, 2012, 9:24 pm
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);
        }
    }
}

Re: Phone's Adventures in coding

Posted: August 8th, 2012, 6:54 am
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.