GithubHelp home page GithubHelp logo

zorono / fourth-edition Goto Github PK

View Code? Open in Web Editor NEW

This project forked from head-first-csharp/fourth-edition

0.0 1.0 0.0 391.78 MB

Code and graphics for the projects in the 4th edition of Head First C#

License: Other

C# 91.93% HTML 4.67% CSS 3.39%

fourth-edition's Introduction

Head First C#, 4th Edition

This GitHub project contains source code, downloadable PDFs, graphics, and additional files for the projects in the 4th edition of Head First C#: A Learner's Guide to Real-World Programming with C# and .NET Core (O'Reilly Media 2020).


How to use the code in this repository to follow along with the book

Here's a direct link to download all of the code: master.zip – it may get saved as fourth-edition-master.zip.


Troubleshooting problems with Chapter 1

Did you get an "Index was out of range" error or a "Debugger operation failed" error, or is your timer going slowly? There are usually straightforward fixes for those issues!)

What's on this page

Read the first four chapters today!

Do you want to learn C#? Are you trying to figure out if our book is right for you? We think our book is one of the most effective ways to learn C#. But you don't have to take our word for it! We want you to have the best C# learning experience possible, so to make things easy for you we've provided the first four chapters of our book for free.

Download a free PDF of the first 4 chapters: Head_First_CSharp_4e_chapters_1_to_4.pdf

That PDF includes the complete introduction, chapters 1 through 4, the first two Unity Labs, and the complete Visual Studio for Mac Learner's Guide appendix, as well as the full table of contents and index (so you can see everything that we cover).

Try out our book today and see what you think!

☮️♥️👾 Jenny and Andrew

What will you learn from this book?

Dive into C# and create apps, user interfaces, games, and more using this fun and highly visual introduction to C#, .NET Core, and Visual Studio. With this completely updated guide, which covers C# 8.0 and Visual Studio 2019, beginning programmers like you will build a fully functional game in the opening chapter. Then you'll learn how to use classes and object-oriented programming, create 3D games in Unity, and query data with LINQ. And you'll do it all by solving puzzles, doing hands-on exercises, and building real-world applications. By the time you're done, you'll be a solid C# programmer—and you'll have a great time along the way!

What's so special about this book?

Based on the latest research in cognitive science and learning theory, Head First C# uses a visually rich format to engage your mind rather than a text-heavy approach that puts you to sleep. Why waste your time struggling with new concepts? This multisensory learning experience is designed for the way your brain really works.

How to get Head First C#

There are lots of ways that you can get Head First C#:

Video Walkthroughs

Find the video walkthroughs for Chapter 1 on our YouTube channel.

How to use the code in this repository to follow along with the book

This repository contains all of the code for every project in the book. We created a video walkthrough to help get you started! It starts with a completely clean installation of Windows 10, shows you how to download and install Visual Studio 2019, then walks you through downloading all of the code from the book and running it in Visual Studio.

Video walkthrough: Getting Started with Head First C#: Installing Visual Studio 2019 and downloading code from the book

You can jump directly to the different sections of the video:

  • Installing Visual Studio - 1:20
  • Launch Visual Studio and create a "Hello World" app - 8:30
  • Download the code from the book and run the Animal Matching game project from Chapter 1 - 10:30
  • Run the ASP.NET Blazor WebAssembly Animal Matching game from the Visual Studio for Mac Learner's Guide - 12:45
  • Run the .NET Core Console App Hide and Seek game from Chapter 10 - 14:35

The code for the projects in each chapter is in the Code folder.

  • The Code folder subfolder for each chapter. For example, the code for all of the projects in Chapter 2 are in the Code/Chapter_2 folder.
  • Inside each chapter folder you'll find each of the projects. For example, the PickRandomCards Console App project on page 106 in Chapter 3 is in the Code/Chapter_3/PickRandomCards folder.
  • When there are both WPF and Blazor versions of a project, the chapter folder will contain both of them. For example, on page 118 you create a WPF version of the card picker app called PickACardUI, which you can find in Code/Chapter_3/PickACardUI. The code for the Blazor version on page 714 is in Code/Chapter_3/PickACardBlazor.
  • Code solutions for the Sharpen Your Pencil, Pool Puzzle, Magnets, and other pencil-and-paper exercise can also be found in the chapter folders. For example, Chapter 3 has two Sharpen Your Pencil exercises that have code solutions that run. The first one is on page 135, and the code can be found in Code/Chapter_3/SharpenYourPencil. The second one is on page 153, and the code can be found in Code/Chapter_3/SharpenYourPencil_2.
  • The code for the Unity Lab projects can be found in the Code/Unity_Labs/ folder.

Use the GitHub website to browse the code

The most common way people use the code on this website is to look at our solution. (Remember, it's not cheating to look at our solution while you're solving the problem! That's a valid and often very effective way to learn.) You

  • In a code folder, you'll see a solution file that ends with .sln. Visual Stuido uses this file when you load the code. You can ignore it if you're reading the code on the GitHub page.
  • The code folder contains a project folder with the actual code. Most of the solutions in the book contain one project (in Chapter 9 you'll learn about unit testing, and create solutions with more than one proejct).

Load the chapter projects in Visual Studio

All of the projects for each chapter can be loaded in Visual Studio. The easiest way to run the code from this repository is to download and extract a zip of the entire repository:

  1. Download the zip file of the entire repository. Here's a direct link to download it: master.zip – it may get saved as fourth-edition-master.zip.
  • You can also find that link by going to the top page in the repository, clicking the Code dropdown button just above and to the right of the code listing, and choosing Download zip
  1. Extract master.zip (or fourth-edition-master.zip) – it has all of the files in the repository.
  2. Go to the chapter folder (e.g. Code/Chapter_3) and open the project folder inside it (e.g. PickRandomCards).
  3. Double-click on the solution (.sln) file to open it in Visual Studio. You can also use the Visual Studio menu to open an existing project, navigate to the solution (.sln) file, and open it.

*Note that the Blazor projects can all be loaded in Visual Studio 2019 on Windows. There is currently no macOS support for WPF, so Visual Studio for Mac will not load the Mac projects.)

Load the Unity projects with Unity Hub

You can use Unity Hub to load the Unity projects from this repository.

  1. Download master.zip and extract it.
  2. Follow the instructions in Unity_Lab_1_Explore_CSharp_with_Unity.pdf to make sure Unity Hub is installed, as well as the version of Unity that we used to create the Unity Labs.
  3. Open Unity Hub, click the Add button, and navigate to the folder with a Unity project (e.g. Code/Unity_Labs/Unity_Labs_1_and_2), and click Open to add it to the project list in Unity Hub.
  4. Double-click on the project in Unity Hub to open the proejct.
  5. If the scene appears to be empty once Unity loads the project, load the scene by choosing File >> Open Scene from the menu, navigating to the Scenes folder, and opening Sample Scene.unity.

Downloadable project PDFs

Some of the chapters have downloadable projects. You can download PDFs of those projects here:

NOTE: The downloadable projects for these chapters are early release PDFs! That means that while the code works, the projects are complete, and we've done our initial review of them, we're still working on polishing them up and putting the final touches on them. But you can definitely start using them today!*

Download all of the Unity Labs

Unity Labs from the book

In the Head First C# Unity Labs you'll use Unity, the powerful platform for 2D and 3D game development, to explore C# and practice your C# skills.

Additional Unity Labs

There's more to learn about Unity! We've written additional Unity Labs that go beyond the material in the book to teach you important Unity topics, and give you more practice building 3D games.

Unity Lab code

You can find the code for the Unity Lab projects in the Code/Unity_Labs/ folder. You can load a project into Unity by:

  • Downloading it (or cloning this whole repository)
  • Adding its folder to Unity Hub
  • Opening it in Unity Hub
  • Opening SampleScene from the Scenes folder

Bonus Chapters

Finished the book, but still hungry for more? There are additional bonus chapters so you can keep moving forward with your C# learning.

Additional material that you can download

Here's what you'll find in this repository:

Did you run into trouble with the project in the first chapter?

In the first chaper you jump right into a project to create an animal matching game to help you start learning about C# and Visual Studio. We've had many readers do this project—so don't worry, it definitely works! (In fact, some of our readers got especially creative with the project. You can read more about it on the Visual Studio blog.)

System.ArgumentOutOfRangeException: 'Index was out of range.'

The most common problem people run into is an exception with the message System.ArgumentOutOfRangeException: 'Index was out of range.' Here's a screenshot of what that looks like:

Screenshot of Visual Studio 2019 showing 'index out of range' exception

If you get this error, make sure that your C# code and XAML match the C# code and XAML in the book exactly: you need to have 16 <TextBlock>…</TextBlock> lines in your XAML, and eight matching pairs of animal emoji in the animalEmoji list.

(This exception happens because your foreach loop is pulling an emoji out of the animalEmoji list for each TextBlock and then removing it from the list. If you have an extra TextBlock or if you're missing an emoji, your foreach loop will run out of animals before it runs out of TextBlocks to add them to. It will try to get a random emoji from the empty animalEmoji list, and that's what causes the exception.)

While most readers are able to do this project without any trouble, you could run into problems if your code doesn't match the code in the book exactly. Here's what to do if you run into trouble with the project in the first chapter:

  • Compare the code line by line. It's really easy to miss a comma, semicolon, parentheses, equals sign, etc.
  • If you're following the ASP.NET Blazor version, make sure that your HTML markup matches the markup in the book exactly.

Is your timer going slowly?

At the end of the WPF Animal Matching Game, is your timer acting strainge, counting slowly or only advancing when you click an emoji? If you still have the runtime tools turned on, that could cause your timer issues. Follow the instructions on page 26, or if you're watching the video walkthrough, at 15:30 in the video, to turn off the tools. (Thank you to Daedalus359 for figuring this out!)

Are you getting "Debugger operation failed" when you start your Blazor app?

If you're following the Visual Studio for Mac Learner's Guide, the very first step is creating an ASP.NET Blazor WebAssembly App project and running it. If you run into an "Unable to launch browser" error or an error that mentions certificates, it probably means there's a small setup issue that you need to fix. Open Terminal and run the following commands:

  1. Change Properties/launchSetting.json/ and move the ports from 5000 and 5001 to somthing else (try changing to 5006 and 5007 respectively)
  2. Open Terminal
  3. Type: $ dotnet dev-certs https --clean
  4. Then Type: $ dotnet dev-certs https --trust
  5. Try again

This redeploys the developer certificates, which lets your browser trust Visual Studio to allow debugging.

special thanks to Twitter user Chris Jackson @Sirhc7001 for very quickly finding the solution! You can read more about it here: dotnet quits unexpectedly on mac os #12317

Still having trouble? Check out our video walkthrough!

If you're still having trouble, watch the video walkthrough for the project on our YouTube channel. It shows every step in the project so you can see exactly what you're supposed to do.

Did you run into trouble with pages 77 and 78?

In some early printings of Head First C# (4th edition), pages 77 and 78 were reversed! These are the corrected pages, with the steps in the proper order: Corrected_pages_77_and_78.pdf

Did you have trouble with the "HiLo" game on pages 243 and 244?

In some early printings of Head First C# (4th edition), there was a minor technical issue with this exercise. Here's an updated version: Corrected_pages_243_and_244.pdf

Did you find an error in the book?

We worked really hard to make this book as error-free as possible! But we're only human, and we do occasionally make mistkaes. If you spot an error in the book, please use the O'Reilly errata page to let us know about it. That way it goes into a database so we can keep track of it and fix it in future printings.

Head First C#, 4rd Edition – cover

License and Copyright

All of the source code and graphics used by the source code is licensed under the MIT License.

PDFs, cover, and other written book material © 2021 Andrew Stellman and Jennifer Greene, all rights reserved.

Cover art by Jose Marzan Jr. (@JoseMarzan).

The O’Reilly logo is a registered trademark of O’Reilly Media, Inc. The Head First series designations, Head First C#, and related trade dress are trademarks of O’Reilly Media, Inc.

fourth-edition's People

Contributors

andrewstellman avatar hfcsharpreader avatar jongalloway avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.