Hmmm you've convinced me to go with C++.
One thing I am going to do, is finish the program I started.
I do not know how to write syntax (or string I think is what it is called)
Something like this:
Code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace PictureViewer
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application****n(new Form1());
}
}
}
Basic window. I just copied paste that form the Visual Stuido 2010... I would rather learn how to write that then have it do it for me.
I do understand a bit, but very very little. If someone would be able to re-direct me to C++ (I guess I just got to go to that very complex tutorial...) or if there are books. That would be nice. A teacher would be sweet also.
Edit: It seems now that I am farther into making my program it's explaining how to write code. Well I'm still stickin with C++ after I try a few more things.