• Home
uCertify Logo
  • 0
    • Your cart is empty
    • Continue Shopping
    • View Cart
  • Login or Signup
    • Help & Support
    • Accessibility
    • Testimonials
  • Powered by uCertify
  • Cart 0
    • Your cart is empty
    • Continue Shopping
    • View Cart
  • Hello GuestLogin or Signup
  • Feedback & Support
    • Support
    • Keyboard Shortcuts
    • Send Feedback
Scroll to top button

Beginning C# 7 Programming with Visual Studio 2017

(CSharp-VS-2017) / ISBN: 9781644590072
This course includes
Lessons
TestPrep
LiveLab
CSharp-VS-2017 : Beginning C# 7 Programming with Visual Studio 2017
Share
$279.99
Try This Course
4.5 Rating 2 Reviews
Are you an instructor?
Request a free evaluation copy

Beginning C# 7 Programming with Visual Studio 2017

The Beginning C# Programming with Visual Studio 2017 course and lab will help you to learn C#. Lab simulates real-world, hardware, software, and command-line interface environments and can be mapped to any text-book, course, or training. This C# training course provides an understanding of concepts like functions, debugging, error handling, cloud programming, defining classes, defining class members, desktop programming, and more. The C# tutorial has the best learning resources to help you understand the basic and advanced C# concepts.
Here's what you will get

Lessons
  • 26+ Lessons
  • 234+ Quizzes
  • 200+ Flashcards
  • 200+ Glossary of terms
TestPrep
  • 56+ Pre Assessment Questions
  • 52+ Post Assessment Questions
Lab
  • 69+ Performance lab
  • 36+ Video tutorials
Here's what you will learn
Download Course Outline
Lesson 1: Introduction
  • Who This Course Is For
  • What This Course Covers
  • How This Course Is Structured
  • What You Need To Use This Course
  • Conventions
Lesson 2: Introducing C#
  • What is the .NET Framework?
  • What is C#?
  • Visual Studio 2017
Lesson 3: Writing a C# Program
  • The Visual Studio 2017 Development Environment
  • Console Applications
  • Desktop Applications
Lesson 4: Variables and Expressions
  • Basic C# Syntax
  • Basic C# Console Application Structure
  • Variables
  • Expressions
  • Exercises
Lesson 5: Flow Control
  • Boolean Logic
  • Branching
  • Looping
  • Exercises
Lesson 6: More About Variables
  • Type Conversion
  • Complex Variable Types
  • String Manipulation
  • Exercises
Lesson 7: Functions
  • Defining and Using Functions
  • Variable Scope
  • The Main() Function
  • Struct Functions
  • Overloading Functions
  • Using Delegates
  • Exercises
Lesson 8: Debugging and Error Handling
  • Debugging in Visual Studio
  • Error Handling
  • Exercises
Lesson 9: Introducing to Object-Oriented Programming
  • What is Object‐Oriented Programming?
  • OOP Techniques
  • OOP in Desktop Applications
  • Exercises
Lesson 10: Defining Class
  • Class Definitions in C#
  • System.Object
  • Constructors and Destructors
  • OOP Tools in Visual Studio
  • Class Library Projects
  • Interfaces Versus Abstract Classes
  • Struct Types
  • Shallow Copying versus Deep Copying
  • Exercises
Lesson 11: Defining Class Members
  • Member Definitions
  • Additional Class Member Topics
  • Interface Implementation
  • Partial Class Definitions
  • Partial Method Definitions
  • Example Application
  • The Call Hierarchy Window
  • Exercises
Lesson 12: Collections, Comparisons, and Conversions
  • Collections
  • Comparisons
  • Conversions
  • Exercises
Lesson 13: Generics
  • What are Generics?
  • Using Generics
  • Variance
  • Exercises
Lesson 14: Additional C# Techniques
  • The :: Operator and the Global Namespace Qualifier
  • Custom Exceptions
  • Events
  • Expanding and Using Cardlib
  • Attributes
  • Initializers
  • Type Inference
  • Anonymous Types
  • Dynamic Lookup
  • Advanced Method Parameters
  • Lambda Expressions
  • Exercises
Lesson 15: Basic Desktop Programming
  • XAML
  • The Playground
  • Control Layout
  • The Game Client
  • Exercises
Lesson 16: Advanced Desktop Programming
  • Creating and Styling Controls
  • WPF User Controls
  • The Main Window
  • Putting it All Together
  • Exercises
Lesson 17: Basic Cloud Programming
  • The Cloud, Cloud Computing, and the Cloud Optimized Stack
  • Cloud Patterns and Best Practices
  • Using Microsoft Azure C# Libraries to Create a Storage Container
  • Creating an ASP.NET 4.7 Web Site that uses the Storage Container
  • Exercises
Lesson 18: Advanced Cloud Programming and Deployment
  • Creating an ASP.NET Web API
  • Deploying and Consuming an ASP.NET Web API on Microsoft Azure
  • Scaling an ASP.NET Web API on Microsoft Azure
  • Exercises
Lesson 19: .Net Standard and .Net Core
  • Cross‐Platform Basics and Key “Must Know” Terms
  • What is .NET Standard, and Why Is It Needed?
  • Referencing and Targeting Frameworks
  • What Is .Net Core?
  • Building and Packaging a .Net Standard Library
  • Building a .Net Core Application with Visual Studio
  • Porting from .Net Framework to .Net Core
Lesson 20: ASP.Net and ASP.Net Core
  • Overview of Web Applications
  • Which ASP.NET to Use and Why
  • Using ASP.NET Web Forms
  • Creating ASP.NET Core Web Applications
Lesson 21: Files
  • File Classes for Input and Output
  • Streams
  • Monitoring the File System
  • Exercises
Lesson 22: XML and JSON
  • XML Basics
  • JSON Basics
  • XML Schemas
  • XML Document Object Model
  • Converting XML to JSON
  • Searching XML with XPath
  • Exercises
Lesson 23: LINQ
  • LINQ to XML
  • LINQ Providers
  • LINQ Query Syntax
  • LINQ Method Syntax
  • Ordering Query Results
  • Understanding the Orderby Clause
  • Querying a Large Data Set
  • Using Aggregate Operators
  • Using the Select Distinct Query
  • Ordering by Multiple Levels
  • Using Group Queries
  • Using Joins
  • Exercises
Lesson 24: Databases
  • Using Databases
  • Installing SQL Server Express
  • Entity Framework
  • A Code First Database
  • But Where Is My Database?
  • Navigating Database Relationships
  • Handling Migrations
  • Creating and Querying XML from an Existing Database
  • Exercises
Lesson 25: Windows Communication Foundation
  • What Is WCF?
  • WCF Concepts
  • WCF Programming
  • Exercises
Lesson 26: Universal Apps
  • Getting Started
  • Windows Universal Apps
  • App Concepts and Design
  • App Development
  • Common Elements of Windows Store Apps
  • The Windows Store
  • Exercises

Hands on Activities (Performance Labs)

Introducing C#

  • Sandbox Visual Studio 2017

Writing a C# Program

  • Creating a Simple Console Application
  • Creating a Simple Windows Application

Variables and Expressions

  • Using Simple Type Variables 
  • Manipulating Variables with Mathematical Operators
  • Finding the largest number

Flow Control

  • Using Boolean Operators
  • Using the if Statement
  • Understanding operator precedence
  • Using the if-else double-selection statement
  • Using the switch statement
  • Using the switch statement with the string
  • Using the do-while Loop
  • Using the while loop
  • Using the while loop for printing the Fibonacci series
  • Using the if-else statement within the while loop
  • Understanding the do-while loop
  • Using the do-while loop
  • Using the for loop - Part 1
  • Using the for loop - Part 2
  • Obtaining the sum of even numbers using the for loop
  • Using the nested for loop for printing a pattern

More About Variables

  • Implementing Type Conversion
  • Using an Enumeration
  • Using a Struct
  • Using an Array
  • Understanding one-dimensional array
  • Initializing an array and using linear search
  • Converting a String to an Array
  • Comparing strings
  • Extracting a substring from a string
  • Concatenating strings
  • Converting a string to lower case
  • Using the Replace function
  • Converting a string to upper case
  • Using the trim function

Functions

  • Defining a Basic Function
  • Exchanging Data with a Function
  • Understanding functions - Part 1
  • Understanding functions - Part 2
  • Creating multiple arguments in a function
  • Understanding the variable scope
  • Using the delegate Keyword
  • Using the delegate Keyword to Call a Function

Debugging and Error Handling

  • Learning the using Statement
  • Handling an Exception
  • Using the finally Block

Introducing to Object-Oriented Programming

  • Working with objects
  • Understanding inheritance
  • Using polymorphism
  • Understanding constructor overloading
  • Using Objects

Defining Class

  • Defining Classes
  • Using access modifiers
  • Learning about Classes Versus Structs

Defining Class Members

  • Using Fields and Properties
  • Using Nested Classes

Collections, Comparisons, and Conversions

  • Using Collections
  • Implementing an Iterator
  • Using the is Operator
  • Using ArrayList

Generics

  • Using a List
  • Sorting a List

Additional C# Techniques

  • Implementing a Lambda Expression

Files

  • Creating a Sequential-Access Text File
  • Reading Data from a Sequential-Access Text File
  • Creating a Sequential-Access File Using Object Serialization

LINQ

  • Converting LINQ to XML
  • Creating a LINQ Program
Customer Testimonials
Aman Sahni
If you are new to .NET, then I would recommend learning C# from uCertify. I have personally gone through their C# 7 course, and they really have awesome material in their course. They have covered all the concepts of C# along with .NET architecture as well as cloud topics. Their quizzes, assessments, and performance labs are great features to clear the concepts and to learn the coding in a very optimized and clean way.
Ali Murtaza
The uCertify CSharp course walks you through everything you need to know, starting from the very basics, to have you programming in no time. The course focuses on the basic and advanced concepts of C# programming and provides hands-on learning with interactive learning resources. I would like to recommend this course to everyone who wants to learn CSharp.

Show more

×
uc logo for app downloadDownload our uCertify App [lms_setting_placeholder: This filed is used to set the LMS settings.

Share with your friends and colleagues

We use cookies to enhance your experience. By continuing to visit this site you agree to our use of cookies. More information
Accept