Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

C# crash-course

Options
  • 06-03-2009 10:20pm
    #1
    Closed Accounts Posts: 2


    Hello Everyone,

    I may have an interview coming up on Wednesday next and a couple of the topics I will more than likely be quizzed on are C# and VB.Net

    I have only studied C so far in my university course and so in ordere to cover any eventualities I would like to understand the very basics of both of these. Does anyone have any ideas or any links to good, simple to understand readings or sites?

    It would be greatly appreciated :)


Comments

  • Registered Users Posts: 11,980 ✭✭✭✭Giblet


    Know your .net stuff

    You'll be asked stuff like

    What's the Global Assembly Cache?
    What's a delegate?
    What's the difference between an unsafe code block and a managed code block?
    What's an auto-implemented property?
    What's a parameterised contructor?
    What's a virtual function? (c++ has the same)



    Anything beyond that would be basic programming.

    I'd say your best bet is to implement something you've created in C in a console app.

    There's really not much difference between Java, C# and C++ when it comes to the basics.


  • Closed Accounts Posts: 815 ✭✭✭KStaford


    +1 what The Hitcher said.

    Here's a basic intro to the .Net Framework
    http://msdn.microsoft.com/en-gb/library/zw4w595w(vs.71).aspx


  • Registered Users Posts: 7,468 ✭✭✭Evil Phil


    Don't forget:

    a)What's the difference between an abstract class and an interface?
    b)What's the difference between an abstract class and a static class?
    c)Can you give examples of when you'd use them.

    More OOP than .Net specific but you should be able to answer them as they'll probably be asked.


  • Closed Accounts Posts: 2 IntoTheEther


    Thanks a million for the pointers. I have plenty to get my teeth into so :)


Advertisement