[Update C# 8]
The next major version of C# is officially released which is C# 8.0. We were expecting it for quite some time, we had the chance to learn all the minor features and enhancements included in C# 7.1, 7.2 and 7.3, and I can say I am quite excited about the new capabilities Microsoft keep adding to C#.
In chapter 11 we will be discussing the new features and enhancements of C# 8 with easy to follow examples to make you understand what each feature is about.
[Update C# 8]
The next major version of C# is officially released which is C# 8.0. We were expecting it for quite some time, we had the chance to learn all the minor features and enhancements included in C# 7.1, 7.2 and 7.3, and I can say I am quite excited about the new capabilities Microsoft keep adding to C#.
In chapter 11 we will be discussing the new features and enhancements of C# 8 with easy to follow examples to make you understand what each feature is about.
Hello and welcome to The Complete C# and Object-Oriented Programming Course, The one and only course you will need to learn C# and object-oriented programming. This is more like a collection of many courses brought together to help you learn C# and how to use it efficiently. This course is by far the most comprehensive and effective on the market. Here's why:
The course will teach you almost everything you need to know regarding the powerful C# language.
This course start with you from zero experience in programming and starts to level up to the object-oriented programming till you reach the advanced concepts and topics of C# (Asynchronous Programming, LINQ,Generics, Collections, Delegates and more).
It will help you learn any programming languages other than C# later, because the course discusses almost every programming concepts and of course how to implement it in C#.
You will experience more than 200 examples, 30 exercises, 24 assignments and over 150 quiz questions.
You will learn about the new features in C# (7.1 - 7.2 - 7.3 and 8) like Enhanced tuples, out variables, local functions, expression bodied members, pattern matching and other more features.
This course will cover different encryption and decryption methods, plus explaining the theory of cryptography.
You will be very familiar with Visual Studio and many of its features like snippets and how to use them and even create custom snippets.
You will learn about real world staff like naming conventions, the small little differences between data types, terminologies, programming concepts and more.
Understand the advanced concepts such as multithreading, the synchronous and asynchronous programming.
Get familiar with the .Net framework structure and understand is the .Net framework
Learn the history of C# language and differences between each version of C#.
Learn how to work like professionals.
What other students who have taken this course say:
"I enjoyed the course. It's comprehensive and covers most of everything you'd want to know about C# and .NET. There's plenty of exercises and assignments in the course to help reinforce lessons. The course could be improved with the addition of a course project, but the instructor has assured that there will be another course forthcoming that will cover this. I recommend this course for anyone who wants to learn more about C# and the .NET framework."
"I am about 1/4 throught this course, and i have to say its brilliant. I have tried to learn how to program with many different languages using may different courses on udemy and have given up either because the course moved to fast or was to technical for me to understand. However this course is fantastic the material presented is very easy to digest and very informative while still engaging. So far i have learnt about using build in metods such as DateTime methods for my programs, creating and useing classes using inheritance, encapsulation and polymorphism. The course progresses on a nice incline in difficulty to test you on what you have just learnt and it has coding exercises, assignments and also quizes to test yourself with. The instructor is also very friendly and is quick to answer your questions with a good level of detail. I would recommend this course for anyone wanting to learn c# or learn how to program in general using c# as a first language."
"This course clearly covered the topics to understanding the language from a first-steps approach. I highly recommend to anyone who wishes to learn the language and requires a video tutorial with enough exercises. Thanks Ahmad"
"I've enrolled in countless other C# courses on UDEMY but always end up either getting bored or end up getting confused. In this course so far, the course has assignments which keep it fun for me, plus it cover all topics clearly to prevent me from getting confused. Thank You."
"The course is comprehensive and well explained, undoubtedly the author knows what he is talking about and is pretty experienced with this kind of topics.Examples were short enough to make obvious what each pattern is all about. Author points out issues in different approaches and provides a solution.Never seen these kind of explanations before...Overall I find this course excellent"
"Great course. The instructor has comprehensive knowledge about the C# language and is able to present the programming concepts and paradigms in a way that is easily understandable.The presentation is very detailed and concise which is greatly appreciated.I feel ready to implement the knowledge gained"
Students also said that this course was:
Comprehensive Curriculum
Friendly
Direct & To-the-point
Get ready to start a journey of 20+ hours of C#, 20+ hours will make you a C# guru.
So what are you waiting for....let's start.
Introduction to The Course.
Introduction to the chapter to present what we are going to discuss next.
In this important lecture we need to set a solid understanding of the different types of programming languages.
You need to learn another important concept in the world of computer science before you start learn more about programming...which is the compiler.
In this article you will see how compilers actually work in details.
C# is a very powerful programming language and can be used to deliver different types of applications, let us see what can you do with C#.
In this lecture you will be installing the latest edition of Visual Studio which is 2019 Preview For Window.
In this lecture you will be installing the latest edition of Visual Studio which is 2019 Preview For Mac.
Visual Studio 2019 Preview is out there, in this lecture we are going to check it out and create our first .Net Core console app.
Explaining what are variables and what are the common data types (integer, decimal, double, char, string).
How to work with string variables.
How to work with boolean (true or false) variables.
How to convert one type of data to another type in different ways.
How to use comments in different ways.
See how to use var keyword instead of all the data types.
Summing up what we have been discussing in this chapter.
The Fundamentals of C# Programming - Part 1 - Quiz
Dive deeper into integer datatypes, the limits and the sizes and more.
Explaining the difference between the double, float and decimal datatypes.
How to work with DateTime and display it in different formats and even custom formats.
Exercise No 01 - Test your knowledge of DateTime.
Discuses the different error types such as Syntax Error and Run-time Error (Exceptions).
Explaining the different worldwide naming convention and why to use it.
Learn how to take inputs from the user using ReadLine method.
How to do basic arithmetic operations (addition, subtraction, multiplication, division and remainder) .
Exercise No 02 - Test your knowledge of arithmetic operators.
Learn the order in which operations are performed when an expression is evaluated.
Explaining how if and else statements work, to ask if a condition is proven true to apply some function or not.
Explaining how switch statement works, almost acting as an if statement but with a different technique.
How to do comparisons (equal, not equal, greater than, greater than or equal, less than and less than or equal).
Understand how logical operators (and, or and not) work, they typically used with Boolean values.
Combine many logical operators together to perform a real world scenario such as Username or Email and password scenario.
Exercise No 03 - Test your logical thinking with this exercise.
The Fundamentals of C# Programming - Part 2 - Quiz
Explaining how TryParse work and why it is safer than the direct Parse and also how to use the out keyword.
By using const keyword we can create variables that does not change over the life of the program.
If you got bored of the look of command prompt let's see how can we change background color, font size and font color.
How to use the powerful functions to manipulate a strings such as Trim, toUpper, toLower and Replace.
Continuing the manipulation of strings we are going to use Substring, remove, Insert, IndexOf and LastIndexOf.
Exercise No 04 - Test your knowledge of string functions.
Consisting of a backslash (\) followed by a letter or by a combination of digits are called "escape sequences." To represent a newline character, single quotation mark and many others.
String Interpolation is the way that placeholders in a string are replaced by the value of a string variable, it was introduced in c# 6.
Learn how to work with for loops, The for loop executes a block of statements repeatedly until the specified condition returns false.
Learn how to work with different looping technique the While and Do while.
Now we are going to see how to place a for loop inside another for loop, this technique called nested loops.
Exercise No 05 - Test your knowledge of loops.
Math class provide us with the common mathematical functions such as Ceiling, floor, round and truncate.
Continue exploring the Math class functions and properties in this lecture we have Max, min, pow, sqrt and PI.
In this lecture we are going to see how to generate random numbers something like dice maybe or any other example.
Arrays can stores a collection of elements of the same type, In this lecture we are going to see how to use arrays.
The Fundamentals of C# Programming - Part 3 - Quiz
Now it is time to explore the basic concepts of object-oriented programming.
A method is a code block that contains a series of statements. In this lecture we are going to see how to create methods in C#.
Continue our discussion about methods now let's see how can we add parameters and return a value from a method.
Exercise No 06 - Test your knowledge of basic methods.
Learn the difference between pass by reference vs pass by value (ref keyword and out keyword.
Learn the rules for creating methods with the same name.
Exercise No 07 - Test your knowledge of overloaded methods.
A class is a construct that enables you to create your own custom types by grouping together variables of other types, methods and events. A class is like a blueprint.
Constructors have the same name as the class or struct, and they usually initialize the data members of the new object.
In this lecture we are going to see how can we explore the different classes and structs through visual studio.
Explaining how can we use static methods and what is the need to use static methods.
The scope of a variable determines its visibility to the rest of a program.
The first of the four pillars of OOP which enables you to create new classes that reuse, extend, and modify the behavior that is defined in other classes.
Encapsulation is used to prevent or allow access to its members from outside classes using public, private, protected, internal modifiers.
Exercise No 08 - Test your knowledge of inheritance.
Polymorphism is often referred to as the third pillar of OOP, after encapsulation and inheritance, Polymorphism is a Greek word that means "many-shaped".
Applying the concept of abstraction by making classes not associated with any specific instance.
Exercise No 09 - Test your knowledge of object-oriented programming.
#region lets you specify a block of code that you can expand or collapse when using the outlining feature of the Visual Studio.
Object-oriented Programming in C# - Part 1 - Quiz
Sealed modifier prevents other classes from inheriting from it.
Static class cannot be instantiated. You cannot use the new keyword to create instances. you access the members of a static class by using the class name itself.
A type defined within a class or struct is called a nested type.
It is possible to split the definition of a class over two or more source files. Each source file contains a section of the type or method definition, and all parts are combined when the application is compiled.
Namespaces are used to provide a "named space" in which your application resides. They're used especially to provide the C# compiler a context for all the named information in your program, such as variable names.
Struct is a value type that is typically used to encapsulate small groups of related variables, such as the coordinates of a rectangle or the characteristics of an item in an inventory.
In this lecture we are going to see the differences between classes and structs.
The enum keyword is used to declare an enumeration, a distinct type that consists of a set of named constants called the enumerator list.
Exercise No 10
The this keyword refers to the current instance of the class.
OpenCourser helps millions of learners each year. People visit us to learn workspace skills, ace their exams, and nurture their curiosity.
Our extensive catalog contains over 50,000 courses and twice as many books. Browse by search, by topic, or even by career interests. We'll match you to the right resources quickly.
Find this site helpful? Tell a friend about us.
We're supported by our community of learners. When you purchase or subscribe to courses and programs or purchase books, we may earn a commission from our partners.
Your purchases help us maintain our catalog and keep our servers humming without ads.
Thank you for supporting OpenCourser.