Incorporate C# Code

What is a good book for intermediate/Advance users of C#

And how difficult or easy is it to incorporate a C# source file into a Window Application...Say you have an application that you can enter 20 grades and get the sum of the grades then the average of the grades then print out what grade the student earned ....Can you implement this in a window application....I know you would take some steps in setting the behavior of the textboxes, buttons, ect....but is it possible....Should you start off with the acutual Window Application or the C# source file



Answer this question

Incorporate C# Code

  • Sultan Shaikh

    Hi,

    Since you seem to be asking regarding Windows Application, I would recommend:
    1. Windows Forms Programming in C#  - by Chris Sells
    2. Programming C#, 3rd Edition - by Jesse Liberty

    You should start off with an actual Windows applications and add these classes and use them. Whatever you want to do can be easily achieved using a Windows Forms based app.

    Regards,
    Vikram

  • Incorporate C# Code