mathew
mathew

Reputation: 1

Start point for creating a new application

I need to create an application in C# Windows Forms that uses database to store, display and manage some informations, let`s say personal data of some company employees (e.g display it, change, add new). I need advices where to start, which books are good (preferably not too old). I want to use Entity Framework 4.1. I have experience in OO programming (java), but am new to .NET and i wrote mainly console applications (in java). Please share your recommendations.

Upvotes: 0

Views: 147

Answers (1)

Aaron Pattillo
Aaron Pattillo

Reputation: 126

I find the Beginner Developer Learning Center to be extremely helpful starting out with C#. You can jump to the appropriate tier for your skill level:

  • Tier One: The introduction provides some basics of and gets you started using Visual Studio Express
  • Tier Two: This section moves more into creating a user interface, OO, and .NET
  • Tier Three: Here you touch on working with databases, XML, and exception handling

Upvotes: 1

Related Questions