public class Test
{
public Test()
{
// This is the constructor method.
}
// rest of the class members goes here.
}
class Test
{
function __construct()
{
// This is the constructor method.
}
// rest of the class members goes here.
}
Actionscript 3 - The freelance rates for Actionscripters especially ones that know 3 is astronomical.
For desktop applications i started with vb.net (and have since started using#, same thing)
im not a hardened programmer or anything but what i will say is the .net framework is brilliant to work with and i personally would say jump right in with C#. because from a beginner's point of view its sensible and logical. its not "easy" as such but lots of things that may be really convoluted in other languages are made easy in .net!
Edsger W. Dijkstra:
It is practically impossible to teach good programming to students that have had a prior exposure to BASIC: as potential programmers they are mentally mutilated beyond hope of regeneration.
Yeah, at a very high level .NET is a runtime (VM) and framework of libraries, and the various high level languages just compile into bytecode.I don't mean to hijack the thread but can someone explain .NET to me? I have programming experiance in Java & PHP and have used C a few times, I have never really ventured to the MS side of programming. If I understand correctly .NET is like the Java VM and whereby programs are converted to some sort of bytecode then execured by the .NET runtime. I'm just a little confused with VB.NET and C#, C++ J++ etc.