Code Monkey home page Code Monkey logo

bookcontents's Introduction

This is my version of the README


Make sure to personalize your welcome message with something unique!

BookContents

Public repo of the Learning C# with Unity 3D book contents

What's included?

The contents of this Git Repo are usable for anyone who may or may not have a copy of the Learning C# with Unity 3D book. Of I'd appreciate it if you bought a copy I'll have a link to the Second Edition on Amazon or B&N soon, I understand that it's not something that everyone can afford.

The contents are arranged by chapter. Example Code is provided for everything shown in the book.

A Chapter Outline will be coming soon as soon as I'm done re-arranging and re-writing all of the content. The second edition is a major update to the previous book. In a practical sense, it's a completely new book, so much of the content is new and re-written that it hardly resembles the previous version.

A lof of work went into comments like these. The comments here help illustrate where the data is coming from and where it's going to. Each step of the process is numbered to help see what's going on.

            int[] numbers = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
            /*      └──────────────❶─────┐ numbers is an array    */
            /*                  ┌──❷──┐  ↓ n is each object in    */
            /*                  ↓     ↑  ↓ the number array.      */
            var evenNums = from n in numbers
            /*    ↑ the result  ↓                                 */
            /*    ❺ is added to └❸┐ an operation is performed     */
            /*    │ evenNums      ↓ on each object in the array   */
            /*    │      */where (n % 2) == 0                     
            /*    │               ↓ if this operation is true     */
            /*    │               ❹ the value is added to         */
            /*    │               ↓ the result of the statement   */
            /*    └─────←*/select n;

This kind of stuff took a lot of work, and I hope this helps!

bookcontents's People

Contributors

csharpwithunity avatar badkangaroo avatar

Watchers

James Cloos 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.