Jump to content

Programing


Recommended Posts

Well I want to learn C++ but BoltBait suggested that I study C# but I want opinions and I would like to build my own web browser...maybe not my first project but advecually I currently am learning PHP which I have a project due at the end of the semester and Im writing it about PHP. But I have Visual Basic Express the Free version of visual basic. but I would be using that writing my programs. Any feed back would be nice thank you.

sig-4.gif
Link to comment
Share on other sites

I'm curious, why you want to write your own browser. Is it just for the expirence, or are you unhappy with the browsers you have available to you?

BTW, don't bother with VB.NET it is just as difficult to program in as C# and if you're going to put out the effort to learn a .NET language you will get more $$$ out of C# knowledge.

Click to play:
j.pngs.pngd.pnga.pngp.png
Download: BoltBait's Plugin Pack | CodeLab | and how about a Computer Dominos Game

Link to comment
Share on other sites

what programs are there that build C# language?

You can download a free C# compiler from Microsoft here:

http://msdn.microsoft.com/vstudio/expre ... fault.aspx

Also, if you want to make web sites in C# you can download:

http://msdn.microsoft.com/vstudio/expre ... fault.aspx

You may need SQL server, which you can download here:

http://msdn.microsoft.com/vstudio/expre ... fault.aspx

Click to play:
j.pngs.pngd.pnga.pngp.png
Download: BoltBait's Plugin Pack | CodeLab | and how about a Computer Dominos Game

Link to comment
Share on other sites

The difference is in the syntax--that is, what you type.

For example, in VB you might write:

    if c=5 then b=12

And, in C++ or C# you might write:

    if (c==5) { b=12; }

They both do the same thing (if the C variable has the value of 5 then 12 will be put into the B variable). Notice that the only real difference is what you type.

This is an extremely simple example and there are many differences (including significant differences between C++ and C#).

But, in the end, they all get the job done.

Click to play:
j.pngs.pngd.pnga.pngp.png
Download: BoltBait's Plugin Pack | CodeLab | and how about a Computer Dominos Game

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...