Programming in C# 11 – From Beginner to Advanced

seeders: 6
leechers: 1
Added 3 years ago by tutsnode in Other

Download Fast Safe Anonymous
movies, software, shows...

Files

Programming in C# 11 – From Beginner to Advanced (Size: 1.3 GB)
  0 504.3 KB
  1 - Introduction.mp4 6.7 MB
  10 - Summary.mp4 5.9 MB
  11 - Introduction.mp4 4.2 MB
  12 - Creating the Project.mp4 3.1 MB
  13 - TopLevel Statements.mp4 27.3 MB
  14 - Statements Basic C Syntax.mp4 25.2 MB
  15 - Where is the Code.mp4 11 MB
  16 - The dot Operator.mp4 21.8 MB
  17 - Blocks of Code.mp4 29.4 MB
  18 - Comments.mp4 25.6 MB
  19 - C is CaseSensitive.mp4 11 MB
  2 - What is NET.mp4 16.5 MB
  20 - What is a Variable DataTypes Integers.mp4 31.8 MB
  21 - Integral Numeric Types.mp4 40 MB
  22 - Real Numbers Floating Point Numbers.mp4 55 MB
  23 - Booleans.mp4 6.9 MB
  24 - Char and String.mp4 17.2 MB
  25 - Escape Sequences.mp4 18.8 MB
  26 - Verbatim Strings.mp4 24.6 MB
  27 - Raw String Literals.mp4 41.4 MB
  28 - Introduction to DateTime.mp4 41 MB
  29 - Naming Variables.mp4 16.4 MB
  3 - What is C.mp4 13.2 MB
  30 - Implicitly Typed Local Variables.mp4 12.2 MB
  31 - Default Values.mp4 18.8 MB
  32 - Introduction to null.mp4 31.3 MB
  33 - NonNullable Reference Types.mp4 39.9 MB
  34 - Binary Expressions.mp4 29.6 MB
  35 - Concatenation.mp4 20.9 MB
  36 - Binary Expressions and Approximations.mp4 35.8 MB
  37 - Arithmetic Overflow.mp4 26.6 MB
  38 - String Interpolation.mp4 15.7 MB
  39 - Unary Expressions.mp4 42.3 MB
  4 - Visual Studio and Visual Studio Code.mp4 7.1 MB
  40 - Void Expressions.mp4 10.5 MB
  41 - Assignment Operators.mp4 27.9 MB
  42 - Order of Precedence.mp4 23.5 MB
  43 - Constants.mp4 22.2 MB
  44 - Warnings and Errors.mp4 29.4 MB
  45 - Summary.mp4 8.2 MB
  46 - Introduction.mp4 2 MB
  47 - Creating the Project.mp4 1.7 MB
  48 - Negation.mp4 9 MB
  49 - Boolean logic Equality and Inequality.mp4 24.6 MB
  5 - Installing Visual Studio.mp4 20.3 MB
  50 - Greater Than and Less Than.mp4 49.7 MB
  51 - Conditional Boolean Operators Avoiding null Reference Exceptions.mp4 50 MB
  52 - The If Statement.mp4 43.3 MB
  53 - Ternary Conditional Operator.mp4 27 MB
  54 - The Switch Statement.mp4 32.6 MB
  55 - Switch Expressions.mp4 28.3 MB
  56 - Relational Patterns.mp4 24.2 MB
  57 - Logical Patterns.mp4 34.3 MB
  6 - Installing Visual Studio Code.mp4 8 MB
  7 - Creating a Project with Visual Studio.mp4 13.6 MB
  8 - Creating a Project with Visual Studio Code.mp4 40.5 MB
  9 - Exploring the Project Structure.mp4 41.9 MB
  TutsNode.net.txt 102.4 B
  [TGx]Downloaded from torrentgalaxy.to .txt 614.4 B
  1 9.5 KB
  2 319.1 KB
  3 234.2 KB
  4 194.9 KB
  5 56 KB
  6 88 KB
  7 17 KB
  8 21.8 KB
  9 461.3 KB
  10 60.4 KB
  11 167.8 KB
  12 157.9 KB
  13 407 KB
  14 197.2 KB
  15 228.1 KB
  16 449.2 KB
  17 103.9 KB
  18 131.4 KB
  19 239.5 KB
  20 74 KB
  21 156.2 KB
  22 500.2 KB
  23 441.9 KB
  24 440.9 KB
  25 314.7 KB
  26 377 KB
  27 458.2 KB
  28 333.5 KB
  29 510 KB
  30 323 KB
  31 202.9 KB
  32 109.2 KB
  33 236.6 KB
  34 181.3 KB
  35 208.9 KB
  36 352.8 KB
  37 42.3 KB
  38 63.9 KB
  39 352.9 KB
  40 443.7 KB
  41 298.4 KB
  42 278.7 KB
  43 473 KB
  44 17.2 KB
  45 30.8 KB
  46 506.3 KB
  47 258.8 KB
  48 16.3 KB
  49 454.4 KB
  50 82.9 KB
  51 287.1 KB
  52 87.8 KB
  53 329.1 KB
  54 424.6 KB
  55 41.8 KB
  ▲ 115 total files

Description


Description

We are going to learn C#. This programming language is quite popular, because it allows us to program for different types of environments: desktop, web, mobile, games, artificial intelligence, internet of things, among others.

However, in order to develop effective applications with C#, it is important to know its fundamentals. In this course you will learn the most important characteristics of this language.

We will go from the basics to the advanced, so it is an ideal course for people who are just starting out, or, if you are an experienced person looking to learn new things, this course is also for you.

You don’t learn much simply by watching the other, so in this course I have included optional questions and problems, which will help you put what you have learned into practice. Do not worry if you do not know how to solve one of the problems, because I give you access to all the solutions of all the problems raised.

Some of the topics we will cover:

– How to declare and initialize variables

– Datatypes

– Basic C# syntax

– How to work with numbers (int, double, decimal, float, among others)

– How to work with the string data type

– How to work with DateTime for date handling

– Value types and reference types

– Non-nullable reference types

– Expressions and operations

– Decisions (using if, the ternary operator and switch)

– Loops (using while, do-while, for and foreach)

– Jump statements and infinite loops

– How to transform from one type of data to another with casts

– How to work with arrays, indices and ranges

– Declare your own functions, using parameters and returning values

– Use tuples to return multiple values from a function

– Lambda expressions and anonymous functions

– Use classes, structs and records

– Introduction to object-oriented programming

– Error handling and debugging

– Accessing files using C#

– Accessing a database from a C# app (including working with stored procedures)

– Using LINQ to work with collections

– Using concurrency to handle asynchronous programming and parallelism

– New C# language features as they come out

These are just some of the topics we will look at.
Who this course is for:

Beginners that want to learn C#
Experienced C# developers that want to learn the latest features of the language

Requirements

You don’t really need to know that much, since we’ll start from the beginning (like, what is a variable)

Last Updated 2/2023

Related Torrents

torrent name size uploader age seed leech
0
7
1
2
2