CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Sep 2016
    Location
    Navi Mumbai
    Posts
    7

    Post How is it possible to learn C# programming?

    Is it possible to learn C# programming language within a month. If yes, suggest how? Also recommend the resources available for learning C Sharp language.

  2. #2
    Join Date
    Oct 2016
    Posts
    9

    Re: How is it possible to learn C# programming?

    As you phrase it, this is an almost impossible question to answer.

    What do you mean by 'learn'. For instance, I have been using a number of languages for many years, and I would not claim to have 'learnt' them, although I've done some significant programming with some of them. I still need to make frequent reference to manuals.

    Next, where are you starting from? Are you a total beginner (one extreme) or are you already fully competent with other, similar, languages (other extreme)?

    Thirdly, what sort of programming are you hoping to achieve? Even a beginner could be writing simple progs within days, and significant programs within a month, although this might not count as 'learnt'?

    The best way would be to follow a book about C#, even better if you can find some example code that already does some or all of what you want, or even just something similar, follow that code and understand what it's doing, make modifications to it and get the new version to compile correctly and work. Keep going along a path like that.

    Geoff

  3. #3
    Arjay's Avatar
    Arjay is offline Moderator / EX MS MVP Power Poster
    Join Date
    Aug 2004
    Posts
    13,490

    Re: How is it possible to learn C# programming?

    The short answer is no, imo. Even very experienced folks in many languages would have a problem working through a book like learn c# in 21 days without knowing c#.

    Today there are a lot of technology choices out there, so sometimes it's hard to pick what to learn. Fortunately, with the internet it's easier than ever to find resources.

    To learn c#, you need a compiler/debugger and some course materials.

    For the compiler search for the download of Microsoft's free compiler, "Visual Studio 2015 community Edition" download.

    For tutorials, search for "c# tutorials". There's lots of material out there.

  4. #4
    2kaud's Avatar
    2kaud is offline Super Moderator Power Poster
    Join Date
    Dec 2012
    Location
    England
    Posts
    7,923

    Re: How is it possible to learn C# programming?

    ...and write programs and write programs and... The only way to really learn a programming language - ie how to use the language to code not just learn its syntax (syntax can be got from the internet) - is to keep writing programs. Starting with something very simple (classic is to display Hello World) and then advance to more complicated programs. This really applies to learning most programming languages and not just c#.
    All advice is offered in good faith only. All my code is tested (unless stated explicitly otherwise) with the latest version of Microsoft Visual Studio (using the supported features of the latest standard) and is offered as examples only - not as production quality. I cannot offer advice regarding any other c/c++ compiler/IDE or incompatibilities with VS. You are ultimately responsible for the effects of your programs and the integrity of the machines they run on. Anything I post, code snippets, advice, etc is licensed as Public Domain https://creativecommons.org/publicdomain/zero/1.0/ and can be used without reference or acknowledgement. Also note that I only provide advice and guidance via the forums - and not via private messages!

    C++23 Compiler: Microsoft VS2022 (17.6.5)

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured