Tag Archives: training

C# Training week one rehash.

 

I have been asked over the years where to start learning how to code, or where to start learning C#.  This in itself will not be teaching you c#, that would be redundant and I am not sure I could do as good of a job as those like Jesse Liberty did on this Scratch course.

I will be helping you learn C#, through pointing you pre-reviewed concentrated training videos and samples.  Pluralsight will be our main content source. They are the best at what they do and I lean heavily on them monthly to learn new technologies.  Since there is so much information available I figured I would give you a list to follow to get you on your way.
C# is a fairly easy and forgiving language.

This course  not meant to be any specific amount of time.  Some of you may fly through this training in hours and others in weeks.

First we will learn code, what is and how to manipulate objects.
Then we will place that code in some sort of User Interface (commonly called a UI) , this is like a web site page or a WPF/Windows 8 application.
Then we will learn data manipulation
Then patterns.

You should be able to apply this knowledge to any current job, where you handle any kind of business process daily or IT work. You will also be able to handle any Junior technical interview by the time we have written against Mobile, Web, Desktop.  Consumed Data from a file, XML, Web Service, Odata Service, and Cloud storage.

It took me almost 2 years of coding on my own time to get a job as a developer.  So I cannot guarantee you work.  Though I can to help you give yourself the skills you would need to get a job if one was available.

I run a Microsoft user group and help organize the Atlanta Code Camp for Microsoft.

This year Give Camp is March 28-30th at the Microsoft Building.  I am handling sponsors this year if any of you want to help (that is the recruiters).

Fun stuff____________________________________________________________________________________________________________

Download Visual Studio 2013 Express from www.VisualStudio.com or use your MSDN subscription if you have one.

If you have MSDN Download VS2012 Premium or Ultimate
http://msdn.microsoft.com/en-us/subscriptions/downloads/hh442898.aspx

http://www.microsoft.com/en-us/download/confirmation.aspx?id=36020 (update to work with windows 8 if needed)

If you do not:

Download Microsoft Visual Studio 2013 Express for windows desktop

http://www.microsoft.com/visualstudio

.Net Framework 4.0   http://www.microsoft.com/en-us/download/details.aspx?id=17851

.Net Framework 4.5   http://www.microsoft.com/en-us/download/details.aspx?id=30653

Optional:  SQL Server 2012 (since express comes with studio Id use that for now and we can upgrade you later when you need SSIS etc).

Install:

Web Platform Installer:
http://www.microsoft.com/web/downloads/platform.aspx
Training Site:
www.pluralsight.com

First Training Videos:

http://www.pluralsight.com/training/Courses/TableOfContents/csharp-from-scratch
Questions I will need answered before you get a next lesson.

What is a Variable?

What is a class?

What is an interface?

Which inherits and which implements?

In common tongue what value’s do these types hold? (C#)

String

Int

void

Bool

Why is Boolean (bool) so important?

Most business logic relies on this.

Is my ticket cleared? If(ticket.Cleared)

Has my customer paid? If(bill.Paid == bill.Total)

Is my invoice old? If(bill.Duedate < DateTime.Now)

Markup Languages

Is HTML Markup?

Is C# Markup?

Is XAML Markup?

Share on Facebook