Students will learn to create their own computer programs using the C# programming language. This programming course is meant for Of course we cover C# syntax but more importantly we introduce the You get paid for solving problems everything else is just a technicality.
Our focus will be working with Visual Studio on WINDOWS machines . All coding examples are fully compatible with the LATEST Visual Studio Edition (As of 2024 Visual Studio Community 2022) for WINDOWS . Unfortunately they are not MAC compatible.
Students will learn to create their own computer programs using the C# programming language. This programming course is meant for Of course we cover C# syntax but more importantly we introduce the You get paid for solving problems everything else is just a technicality.
Our focus will be working with Visual Studio on WINDOWS machines . All coding examples are fully compatible with the LATEST Visual Studio Edition (As of 2024 Visual Studio Community 2022) for WINDOWS . Unfortunately they are not MAC compatible.
A language like C# is typically learned "in a vacuum," and stripped of potentially distracting visual elements or front-end graphical interfaces. This type of learning process which is considered the standard approach is great for communicating the fundamentals. It allows you to focus on the most important and basic programming concepts you will need to understand, and is often presented through the output of a static, text-based console window. However, learning a language in this console vacuum can also be bland and boring, and can often lead to students becoming disengaged entirely.
Students are more likely to remain engaged by learning how to build Windows applications from day one in tandem with learning the C# programming language. Therefore, my lectures are designed to keep you engaged with the process of learning C# fundamentals by presenting them through a series of lessons aimed at creating simple, Windows Form based applications.This course, by jumping right into apps with a Graphical User Interface, allows the learner to feel like they are learning concepts that produce a tangible result.
The first section of the course serves as a primer or refresher to get everybody up to speed.This course assumes absolutely nothing about what you already know, and skips no steps in getting you to know Windows Forms. It walks you carefully through every possible feature you can imagine, and has in its source code hundreds of existing projects you can learn from, or expand on to make your own project. It's worth sifting through a dozen mediocre Udemy courses to find a gem like this. It's pretty close to a one stop shop for taking you from knowing nothing about WinForms, to building your own applications.
This course has more hours of video instruction (30 + hours) , lectures (200+) and exercises and supplemental resources (400+) than virtually any other Introductory C# course offered on Udemy. All for one low price.
Students will be exposed to all the stages in software development and develop problem-solving skills as well as learn the syntax of the C# language.
The challenges/applications are drawn from a variety of situations in the home, school and workplace. They address a wide spectrum of interests including:
Business
sorting
searching
data analysis
connecting to a sequential and relational database (SQL)
Science
probabilistic simulations (using random numbers)
deterministic simulations (using concepts from physics and math Plinko Game )
Social Studies (Geography)
Distance between two cities Table Lookups
Country Telephone codes
Math
hidden pitfalls of computer arithmetic in real world applications
famous mathematical algorithms and their applications (Euclidean Algorithm)
solving mazes and puzzles using the concept of recursion
Cryptography
validating codes like SIN (social insurance numbers) But,having said that, I will try to present the material in such a way that we don't get too hung up on rigid standards. Once you get a feel for the material you could certainly get more serious and take a university or college course or take a more advanced online course.
Not only do the videos show you how to become a programmer in great detail, but each time an important concept is taught, I offer you a challenge that is designed to help you really understand what you have just learned.
You will go away and complete the challenge, and then come back and see the challenge answered and explained in detail in the video, allowing you to check your results. I am online daily to respond to any problems you may encounter.
Here's how I will help you to succeed:
o Each lecture starts with a list of objectives or speaking notes
o Every example covered in the lecture is available for download in the resources section including the objectives or speaking notes
o Almost every lecture has a set of Practice problems with full solutions provided
o My writing and teaching follows the KISS principle : Keep It Super Simple. I try to stay away from fancy computer terminology and try to teach like am speaking to a brand new user with little to no previous knowledge on the subject matter and I am always available for help replying most times within a day.
This is NOT a static course, updates are made several times a month, with new Lectures and Challenge Problems (125 + as of Dec 2024 fully solved) added on a continual basis.
Consider this a first step in the process of learning C#, with the Challenge problems reviewing and extending the concepts covered in the course. Below is a sampling of the topics touched upon.
InterfacesA Deeper exposure to Collections and Generics(Lists/Queues/Dictionaries/Stacks)TuplesAdvanced OOP conceptsRegexLINQWorking with DateTime
And finally please do not judge a book by it's cover don't judge the course by the title or this small description section, if you want to know exactly all the topics covered please go to:
C# is a programming language developed by Microsoft. C# has power of C++ since it's derived from C and C++. It is simpler than Visual Basic. Besides that, C# is a Java like language for web programming. Microsoft says, that C# is the best language to develop its .NET Framework applications.
Here's what you need:
Visual Studio Express 2015 or greater
7zip
Course Demos
Here is what you are going to learn... lots of practical applications.. here is a sampling
In this Lecture we will
In this Lecture we will
In this Lecture we will
In this Lecture we will
In this Lecture we will
In this Lecture we will
In this Lecture we will review the basics of Selective Processing
In this Lecture we will
In this Lecture we will
In this Lecture we will
In this Lecture we will
In this Lecture we will
In this Lecture we will
Problem solving has been described as the process of finding certain information that is not known, from a set of information that is known. In other words, problem solving is not an end result but rather a process. The end result is only worthwhile if the process is followed.
It would be unfair to ask anyone to solve problems without effective tools to help along the way. The nature of programming requires programmers to first solve the problem at hand, then create an ordered set of instructions that will teach the computer how to solve the problem. There are a variety of problem solving models that assist the programmer in the problem solving stage.
In this Lecture we will
Why do software companies keep sending you updates, patches and fixes?
In this Lecture we will
In this Lecture we will
In this Lecture we will
To this point, all the data that we have used when executing our programs has been entered from the keyboard. Similarly, all the output that has been produced from our programs has been to the screen. We must realize that not all input and output occurs this way, in fact, the majority of input for a computer program comes from data files that are stored on a disk or hard drive. When we create a document in a word processor, we see it on the screen; however, if we want to store that information, so that we can use or edit it at a later date, we must output the data to some secure storage medium. In the next few lessons, we will see how data storage and retrieval works.
Data produced from a program as the result of successful processing, can be output to a file for storage, rather than simply to the screen. Once stored, the data can be accessed for further processing, used as input for programs, searched for specific information, sorted, updated ... you get the idea!
Everyone using a computer deals with files. When you turn on your computer, the computer loads files. When you start a piece of software, the computer loads files. When you type solutions to the questions in this unit and save them (hopefully), the computer is saving or writing to a file. We use files to store information that is not being used by the computer at the present time.
Can you think of any useful program that doesn't use files? Files are a very important concept to understand, because any really useful piece of software uses files. Even your video games store your high scores.
In this Lecture we will
The beauty of using a program such as Visual Studio C# is the wide area of unique controls you can apply to your windows applications. Examples include linklabels, tabcontrols, datetime pickers and the treeview.
In this Lecture we will
A recap of some of the concepts covered in this first section of the course from creating your first app, to mathematical concepts, to selection and repetition, methods, and new controls
Exceptions occur when an application experiences some unexpected problem at run time.
In this lesson we will
A recap of error handling techniques in c#
In this Lecture we will
In this Lecture we will
Create a one-dimensional array application involving student marks that will determine the average mark and highest/lowest marks
Introduce the concept of passing by value and passing by reference
By default arrays are passed by Reference
That is, there original values can be changed in a method
Regular variables are passed by Value
That is, when they return from a method they return to their original value
To have regular variables keep its modified value you must explicitly pass it by --- ref
perimeter = MinimumPerimeter(numPics,ref length, ref wid);
In this Lecture we will
In this Lecture we will
In this Lecture we will
In this Lecture we will
In this Lecture we will
A recap of one,two and three dimensional array concepts
In this Lecture we will
In this Lecture we will
In this Lecture we will
A recap of the hidden pitfalls of computer arithmetic and the Euclidean Algorithm.
As our programming experience becomes more complex and detailed, are you taking the time to help others? Do you visit the discussion area regularly to see if you can support those experiencing difficulty? By
working and learning together, we can share the challenges as well as the successes.
In this Lecture we will
In this Lecture we will
In this Lecture we will
In this Lecture we will
A recap of random numbers and their applications
Now that you have a good sampling of basic
C# syntax under your belt, it's time to tackle some more challenging
topics. Classes are integral to the .NET Framework, particularly the
.NET Framework Class Library. This lecture demonstrates how classes are
defined and new instances are created, how to define Properties and how
to both set values and get values for a given instance of the class as
well as creating Methods in our classes. We talk about how the classes
you create are really custom dat types that can be used as such in
helper method declarations and more.
In this Lecture we will
In this Lecture we will
In this Lecture we will
In this Lecture we will
struct CListOfCars
{
public String Make;
public String Model;
public int CarYear;
public int Doors;
public String CarPicture;
}
CListOfCars[ ] Car = new CListOfCars[11];
Note: The structure definition looks alot like the field definitions for a class. Right after the structure def we create an array of CListOfCars called Car
Notice below how we are using an array to refer to each part of the car structure and how the array is a mixture of text (strings) and numbers. You can't do that with a regular array.
string p = Application.StartupPath;
Car[1].Make = "Honda";
Car[1].Model = "Civic";
Car[1].CarYear = 1998;
Car[1].Doors = 4;
Car[1].CarPicture = p + @"\Civic1.bmp";
A recap of OOP concepts and Structures
In this Lecture we will
In this Lecture we will
In this Lecture we will
In this Lecture we will
In this Lecture we will
In this Lecture we will
In this Lecture we will
A recap of C# String commands and applications
In this Lecture we will
In this Lecture we will
In this Lecture we will
A recap of Recursion basics
In this Lecture we will
In this Lecture we will
In this Lecture we will
In this Lecture we will
In this Lecture we will
In this Lecture we will
In this Lecture we will
In this Lecture we will
In this Lecture we will
A recap of Sorting and Searching Techniques and Applications
In this Lecture we will
In this Lecture we will
In this Lecture we will
In this Lecture we will
In this Lecture we will
In this Lecture we will
A recap of File Handling and SQL
In this Lecture we will
List<T> is a generic class. It supports storing values of a specific type without casting to or from objectIn the Lecture we will
In this Lecture we will
See that the Stack is a powerful and simple last-in-first-out data structure.
Learn that this structure can help you develop parsers quickly and also replace complex recursive algorithms.
Learn about the Push command . Usually the first action you need to do on Stack is Push elements into it. The word Push is a computer science term that means "add to the top."
Learn about the Pop command. This command receives an element from the stack
Look at two simple applications ... a Text Parser and a Decimal to Binary Converter
In this Lecture we will
A recap of a the data structures: ArrayList , List, Hash Tables, Dictionaries, Stacks and Queues.
In this Lecture we will
In this Lecture we will
In this Lecture we will
In this Lecture we will
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.