View Poll Results: Should I learn C#? Is it worth my time?

Voters
10. You may not vote on this poll
  • Yes

    3 30.00%
  • No

    7 70.00%

Thread: Should I learn C#? More than just a poll!

  1. #1
    Registered User
    Join Date
    Sep 2001
    Posts
    4,912

    Should I learn C#? More than just a poll!

    I'm still (see: C vs. C++ vs. C#) trying to figure out whether or not I should bother learning C#. Vote above to tell me whther or not you think I should (I already know BASIC, Assembler, Java, C/C++. does C# offer anything above these?), and below, list any URLs you think could be useful if I DO learn it, and your explanation for the above. Thanks!

    _______________________
    Sean Mackrory
    [email protected]

  2. #2
    the hat of redundancy hat nvoigt's Avatar
    Join Date
    Aug 2001
    Location
    Hannover, Germany
    Posts
    3,130
    The .NET Framework will be the future of programming for Windows and maybe other platforms. If you want to be part of it, you need to know VB.NET, C# or C++.NET. VB.NET is almost a new language in itself. Learning the new VB will take as much effort as learning C#. C++.NET is not yet complete, it still lacks a proper 'resource-editor'. C# is easy to learn if you know C++, plus the .NET framework makes many things easier.
    I don't know what you do with the language, but I bet there are already classes to help you doing it
    hth
    -nv

    She was so Blonde, she spent 20 minutes looking at the orange juice can because it said "Concentrate."

    When in doubt, read the FAQ.
    Then ask a smart question.

  3. #3
    Just one more wrong move. -KEN-'s Avatar
    Join Date
    Aug 2001
    Posts
    3,227
    hehe. I agree with nvoigt. C# is great in my opinion. There are new types of arrays (something like jagged arrays? I was reading an ebook on it dean sent me if you want it, nvoigt or sean)

    It's really nice and easy and fun to code for windows in it, too. You can blatantly see where VB and Java (and actually C++, too) merge when you code for windows with it (manually, not with the editor).

  4. #4
    Red Panda basilisk's Avatar
    Join Date
    Aug 2001
    Posts
    219
    Yes C# and VB.Net are really going to be worth learning - one good reason being that a lot of employers are already looking for people with these skills (i was talking to a couple of agencies last week or so ad they were telling me that the demand for people knowing these skills is increasing and they are getting requests from a number of companies for people with VB.Net and C# - they believe the demand will match that for Java and pass it by this time next year.)

    PS. Ken - where did you get the C# e-book from can you send me a link or something as my course was cancelled (follow on from teh VB>net course debacle)
    Do not meddle in the ways of dragons, for thou art crunchy and taste good with ketchup

  5. #5
    Just one more wrong move. -KEN-'s Avatar
    Join Date
    Aug 2001
    Posts
    3,227
    gimme your email address and I'll email it to you. I got it from Dean (troll_king). I actually gave it to rick to put up, but he doesn't like PDF for some reason.

  6. #6
    Red Panda basilisk's Avatar
    Join Date
    Aug 2001
    Posts
    219
    thanks ken i'll pm you my address
    Do not meddle in the ways of dragons, for thou art crunchy and taste good with ketchup

  7. #7
    of Zen Hall zen's Avatar
    Join Date
    Aug 2001
    Posts
    1,007
    If it's the same e-book that Dean offered me then it's part of the net framework, and is included in the visual studio.net download/cd's/dvd. Something like The C# Language Specification, and it's in one of the Framework folders (I can't remember which as it's not installed on the machine that I'm typing this on).
    zen

  8. #8
    Red Panda basilisk's Avatar
    Join Date
    Aug 2001
    Posts
    219
    ahh if it is the same one then i have probably already got it then - i'll just go through my msdn stuff to find it
    Do not meddle in the ways of dragons, for thou art crunchy and taste good with ketchup

  9. #9
    Just one more wrong move. -KEN-'s Avatar
    Join Date
    Aug 2001
    Posts
    3,227
    here's the exact name on it: (eBook - PDF) - Programming - C Sharp Language Reference 0.17b (Jun 2000).pdf

    so you might want to search your HD for it.

  10. #10
    Just one more wrong move. -KEN-'s Avatar
    Join Date
    Aug 2001
    Posts
    3,227
    wow, did a search on mine for it and it brought up every file on my HD...

  11. #11
    Just one more wrong move. -KEN-'s Avatar
    Join Date
    Aug 2001
    Posts
    3,227
    Here, I'll just attach it instead

  12. #12
    Banned Troll_King's Avatar
    Join Date
    Oct 2001
    Posts
    1,784
    <quote>
    I'm still (see: C vs. C++ vs. C#) trying to figure out whether or not I should bother learning C#.
    </quote>

    Did you see any of the threads on this board? There is basically nothing more than a hello world program written in C#. If you want to use .NET than C# offers full interoperability to all the .NET framework class libraries. It is related to C and C++ in terms of syntax and language features. You can write Windows applications using windows forms, web applications using web forms and distributed applications using web services. The code is compiled to an intermediate language (msil) which is the same code whether you use VB.NET, C#, C++.NET, Cobol.NET, etc. It is designed for the common language runtime (clr) which basically will allow any platform that has the .NET framework installed in it to execute the code. The platforms currently planned for .NET are MS Windows, Linux, Windows CE.NET, BeOS.... Assemblies allow the programmer to organize libraries and use global assembly cache for reusable code that is accessible to multiple applications. The real way to learn is to read a book on the subject and write some programs. I can't see how any satisfactory answer to your question can come out of here.

  13. #13
    so .NET is an effort to make programs be able to run on ANY operating system, as long as it has the .NET Framework? That would be nice. Maybe more OS's may come up then, because they don't have to worry about compatablility. Or maybe I am wrong.

    Is the .NET Framework like a virtual machine or something?

  14. #14
    the hat of redundancy hat nvoigt's Avatar
    Join Date
    Aug 2001
    Location
    Hannover, Germany
    Posts
    3,130
    The .NET Languages are compiled to Intermediate Code. This intermediate code is compiled by a Just-In-Time-Compiler (JITer) on the target machine into machine depended code. For this to happen, the target machine needs the .NET Framework. So the code in the .exe file is system independant, it gets translated to the systems machine language once it's executed. This might in some instances even be faster than normal machine code, because the code can be optimized for the target machine, whereas a normal compiled version has to be optimized in a way that it's fast for all targets and has to omit specific optimizations. Note that this Intermediate code is never interpreted but always compiled, unlike Java.

    .NET is a free standard. There exists an open source project called MONO to translate the .NET Framework to Linux. Microsoft however has not announced any ports to other systems, so if Apple for example wants .NET programs to run on Macs, they'd have to port the Framework, Microsoft won't do it for them.
    hth
    -nv

    She was so Blonde, she spent 20 minutes looking at the orange juice can because it said "Concentrate."

    When in doubt, read the FAQ.
    Then ask a smart question.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. What do I learn now?
    By Lorgon Jortle in forum C++ Programming
    Replies: 14
    Last Post: 03-14-2009, 06:44 PM
  2. Am I too late to learn programming?
    By maccat in forum A Brief History of Cprogramming.com
    Replies: 17
    Last Post: 02-17-2009, 08:49 AM
  3. Do you ever try to learn too much?
    By Stonehambey in forum A Brief History of Cprogramming.com
    Replies: 11
    Last Post: 06-17-2008, 07:55 AM
  4. Witch to learn first?
    By Unregistered in forum Windows Programming
    Replies: 2
    Last Post: 06-17-2002, 12:06 AM
  5. Advice on how to being to learn C++
    By VenomUK in forum C++ Programming
    Replies: 9
    Last Post: 05-18-2002, 01:06 PM