avatar.alex Posted May 8, 2007 Share Posted May 8, 2007 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. Quote Link to comment Share on other sites More sharing options...
BoltBait Posted May 8, 2007 Share Posted May 8, 2007 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. Quote Click to play: Download: BoltBait's Plugin Pack | CodeLab | and how about a Computer Dominos Game Link to comment Share on other sites More sharing options...
avatar.alex Posted May 8, 2007 Author Share Posted May 8, 2007 what programs are there that build C# language? Quote Link to comment Share on other sites More sharing options...
usedHONDA Posted May 8, 2007 Share Posted May 8, 2007 Visual Basic C#.... Quote "The greatest thing about the Internet is that you can write anything you want and give it a false source." ~Ezra Pound twtr | dA | tmblr | yt | fb Link to comment Share on other sites More sharing options...
BoltBait Posted May 8, 2007 Share Posted May 8, 2007 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 Quote Click to play: Download: BoltBait's Plugin Pack | CodeLab | and how about a Computer Dominos Game Link to comment Share on other sites More sharing options...
Bob Posted May 8, 2007 Share Posted May 8, 2007 Mono. *runs away* Quote No. Way. I've just seen Bob. And... *poof!*—just like that—he disappears into the mist again. ~Helio Link to comment Share on other sites More sharing options...
avatar.alex Posted May 9, 2007 Author Share Posted May 9, 2007 I am looking at the video for Microsoft C# and Ill get back but whats the difference creating programs with C# C++, VB etc Quote Link to comment Share on other sites More sharing options...
BoltBait Posted May 9, 2007 Share Posted May 9, 2007 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. Quote Click to play: Download: BoltBait's Plugin Pack | CodeLab | and how about a Computer Dominos Game Link to comment Share on other sites More sharing options...
avatar.alex Posted May 9, 2007 Author Share Posted May 9, 2007 Does anyone know where I can find good quick tutorials on C# Quote Link to comment Share on other sites More sharing options...
usedHONDA Posted May 9, 2007 Share Posted May 9, 2007 http://en.wikibooks.org/wiki/C_Sharp_Programming [it happens to be in my bookmarks toolbar ] EDIT: You can also check out the external links on the bottom of the page. Quote "The greatest thing about the Internet is that you can write anything you want and give it a false source." ~Ezra Pound twtr | dA | tmblr | yt | fb Link to comment Share on other sites More sharing options...
avatar.alex Posted May 9, 2007 Author Share Posted May 9, 2007 thank you usedHONDA...and BoltBait Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.