
This video is about get free version of Microsoft Visual Studio from the Microsoft site and create new Project.
This Chapter will teach you the anatomy or structure of a typical c# program. I will give you a head start with default created C# Program by visual studio.
This chapter is about C# Variables and Data Types. The variables and data types, they are the building blocks of the C# program. So far you are doing just printing of texts on the Console right? Now we will do the same but in a different way. Let’s use computer memory we will store some text values in a C# Program then we will print it on console screen.
Operators and Expressions are used to perform task such as Sum of numbers or Multiplication of numbers or to check the equality between two objects or two digits. Any such task needs operators and with the combination of operators and operands it makes expression.
Earlier programs that we created, there were no any control flow statements we used. The Control always runs from top to bottom in a linear way, and so without usage of Control flow statements we can't control the execution of c# control. So in this chapter we will learn how to handle the flow of C# program.
In C# Language anything you put inside double quotes, it will become string. Note that the string is not an executable statement. It’s just a message that has to be printed on the console screen.
In this chapter we will learn how to do repetitive task with the help of looping in c# language. It’s also called Iterations in any programming language.
Arrays are important programming construct in all programming language. This is using in C, C++, C#, Java and all other most used programming languages. Let see, the purpose of arrays. If you want to store more than one different value in a single variable then you can use Arrays.
This is an introduction to object oriented programming language in C#. So,
In this chapter we will learn the basics and few programming practice of Object Oriented Programming. Ok. First of all, why do we need Object Oriented Programming?
So the answer is, the object Oriented Programming (OOPs) is the method of writing software’s application. You will use OOPs to write real world applications with the help of Classes, Objects. Ok. One thing, Remember OOPs is all about classes and objects/instances.
There is always a new version launched in a year or two years, but the fundamental will remain the same, so in this C# Programming course contains 8 Video Chapters. Each video chapters are associated with all technical documents with practice programs. This tutorial teaches the Microsoft C# Language from the very beginning. If you are new to C# programming language, then this tutorial is for you and remember, no one will make you perfect unless you do practice the code, because coding is an Art and to master the Art you must practice.
Learn the C# programming fundamentals by practical approach and made in easy way to understand the newcomer.
Work with the C# Programming Anatomy.
Work with Visual Studio IntelliSense.
Work with C# Keywords, Syntaxes.
Work with C# Logic building. Logic building is crucial while learning any new language in Computer Science, once you master in logic building you can learn any language.
Understanding the control flow and decision making with C# programming, I have added basic C# code samples (we will call it a Program) to understand the control flows.
Working with C# Arrays, in simple mean, when you need more space to store things you will use Arrays :)
At last, we will build a small window project for School Management.