Started C#
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:
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.
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());
}
}
}
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.
btw if you're looking to make 'windows' apps - anything more than basic command-line based stuff you see everywhere around here - in C++, you'll have to pick your poison on how to implement the UI (e.g. straight up win32 api, MFC, WTL or a 3rd party library) - all of which will make the average 13 year olds here freak the f*ck out because it's 'too complicated & confusing'... of course you could do a C++ backend with C# WPF frontend (heck that's how VS2010 was developed) but that's probably way over everyone's head here 

C# is easy.
thefallen.*******
Gaming Client.
Youtube:
itzRiseOfTheFallen
thefallen.*******
Gaming Client.
Youtube:
itzRiseOfTheFallen
Maybe I should torrent a C++ book lol not really a book after that.



