Application & Web Development Category Banner Image

Microsoft 55339 - Programming in C#

  • Length 5 days
  • Price  NZD 3650 exc GST
  • Version A
Course overview
View dates &
book now
Register interest

Why study this course

This training course teaches developers the programming skills that are required to create applications using the C# language.

During this five-day course, you will review the basics of C# program structure, language syntax, and implementation details, and then consolidate your knowledge throughout the week as you build an application that incorporates several features of .NET. The course aims to follow the spirit of the retired Microsoft Official Curriculum course 20483, while bringing it completely up-to-date with the latest features of C#, .NET 6.0 and Visual Studio 2022.

Request Course Information


What you’ll learn

After completing the course, you will be able to:

  • Explain how to use Visual Studio to create and run an application

  • Describe the features and syntax of the C# programming language

  • Define the monitoring needs of large-scale applications

  • Create and call methods, capture and manage exceptions

  • Understand the .NET development platform and libraries

  • Understand the .NET framework classes

  • Create well-structured and easily-maintainable C# code

  • Define and implement interfaces

  • Create a class hierarchy using inheritance

  • Understand object-oriented programming concepts

  • Implement the fundamental architecture and core components of a desktop application

  • Acquire a working knowledge of how to build a graphical UI using XAML

  • Use file I/O and streams, and serialise/deserialise data in various formats

  • Understand web communications and protocols

  • Create an entity data model for database access

  • Use Language-Integrated Query (LINQ)

  • Use asynchronous operations to create performant applications

  • Add dynamic components and unmanaged libraries to a C# program

  • Understand the use of generics and generic collections

  • Retrieve metadata from types using .NET reflection


Microsoft Solutions Partner - Cloud - Training Services Logo

Microsoft at Lumify Work

As part of Lumify Group, Lumify Work has skilled more people in Microsoft technologies than any other organisation in Australia and New Zealand. We have a campus in the Philippines, too. We offer the broadest range of instructor-led training courses, from end user to architect level.  We are proud to be the winner of the Microsoft MCT Superstars Award for FY24, which formally recognises us as having the highest quality Microsoft Certified Trainers in ANZ. 


Who is the course for?

This course is intended for experienced developers who already have programming experience in C, C++, JavaScript, Objective-C, Microsoft Visual Basic, or Java®, and understand the concepts of object-oriented programming.

This course is not designed for students who are new to programming; it is targeted at professional developers with at least one month of experience programming in an object-oriented environment.

If you want to learn to take full advantage of the C# language, then this is the course for you.


Course subjects

Module 1: C# Syntax
Microsoft .NET 6 provides a comprehensive development platform that you can use to build, deploy, and manage applications and services. By using .NET, you can create visually compelling applications, enable seamless communication across technology boundaries, and provide support for a wide range of business processes.

In this module, you’ll learn about some of the core features provided by.NET and Microsoft Visual Studio. You’ll also learn about some of the core C# constructs that enable you to start developing .NET applications.

Lessons

  • Writing Applications in C# and .NET

  • Types of Data and Expressions

  • C# Language Constructs

Lab 1: Developing the Class Enrolment Application

  • Developing the Class Enrolment Application

Module 2: C# Language Concepts
Applications often consist of logical units of functionality that perform specific functions, such as providing access to data or triggering some logical processing. C# is an object-orientated language and uses the concept of methods to encapsulate logical units of functionality. Although a good practice is to have methods that do just one thing, they can be as simple or as complex as you like. It is also important to consider what happens to the state of your application when an exception occurs in a method.

Lessons

  • Methods

  • Method Overloading

  • Exception Handling

  • Monitoring

Lab 1: Extending the Class Enrolment Application

  • Refactor code to facilitate reusability.

  • Write C# code that validates data entered by a user.

  • Write C# code that saves changes back to a database.

Module 3: C# Structures, Collections and Events
To create effective applications you must first learn some fundamental C# constructs. You need to know how to create simple structures to represent the data items you are working with. You need to know how to organise these structures into collections, so that you can add items, retrieve items, and iterate over your items. Finally, you need to know how to subscribe to events so that you can respond to the actions of your users.

Lessons

  • Structs

  • Enums

  • Built-in Collections

  • Events

Lab 1: Building the Grades Prototype Application

  • Structs

  • Enums

  • Built-in Collections

  • Events

Module 4: C# Classes
In this module, you’ll learn how to use interfaces and classes to define and create your own custom, reusable types. You’ll also learn how to create and use enumerable type-safe collections of any type.

Lessons

  • Creating Classes

  • Interfaces

  • Understanding Generics in C#

Lab 1: Adding Data Validation to the Application

  • Creating Classes

  • Interfaces

  • Understanding Generics in C#

Module 5: C# Inheritance
In this module, you’ll learn how to use inheritance to create class hierarchies and to extend .NET types.

Lessons

  • Hierarchies of Classes

  • Polymorphism

  • Extending Classes

Lab 1: Refactoring

  • Hierarchies of Classes

  • Polymorphism

  • Extending Classes

Module 6: Input and Output
In this module, you’ll learn how to read and write data by using transactional filesystem I/O operations, how to serialise and deserialise data to the filesystem, and how to read and write data to the filesystem by using streams.

Lessons

  • File I/O

  • Serialisation and Deserialisation

  • Streams

Lab 1: Creating the Grades Report

  • File I/O

  • Serialisation and Deserialisation

  • Streams

Module 7: Database Access
In this module, you’ll learn how to use Entity Framework and how to query many types of data by using Language-Integrated Query (LINQ).

Lessons

  • Lesson 1: Entity Framework

  • Lesson 2: LINQ

Lab 1: Updating Grade Data

  • Entity Framework

  • LINQ

Module 8: Using the Network
In this module, you’ll learn how to use the request and response classes in the System.Net namespace to directly manipulate remote data sources. You’ll also learn about REST and OData and look briefly at ASP.NET Core MVC.

Lessons

  • Web Services

  • REST and OData

  • ASP.NET Core MVC

Module 9: Graphical User Interfaces
In this module, you’ll learn how to use Extensible Application Markup Language (XAML) and Windows Presentation Foundation (WPF) to create engaging UIs.

Lessons

  • Using UI Frameworks

  • Data binding

  • Styling the UI

Lab 1: Adding a Graphical User Interface

  • Using UI Frameworks

  • Data binding

  • Styling the UI

Module 10: Application Performance
In this module, you’ll learn how to improve the performance of your applications by distributing your operations across multiple threads.

Lessons

  • Multitasking

  • Asynchronous Calls

  • Dealing with Conflicts

Lab 1: Performance Tuning

  • Multitasking

  • Asynchronous Calls

  • Dealing with Conflicts

Module 11: C# Interop
In this module, you’ll learn how to interoperate with unmanaged code in your applications and how to ensure that your code releases any unmanaged resources.

Lessons

  • Dynamic Objects

  • Managing Resources

Lab 1: Working with Word

  • Dynamic Objects

  • Managing Resources

Module 12: Designing for Reuse
In this module, you’ll learn how to consume existing assemblies by using reflection, and how to add additional metadata to types and type members by using attributes. You’ll also learn how to generate code at runtime by using the Code Document Object Model (CodeDOM) and how manage your .NET assemblies.

Lessons

  • Lesson 1: Metadata

  • Lesson 2: Attributes

  • Lesson 3: Generating Code

  • Lesson 4: Assemblies

Lab 1: Managing the Grades Report Assembly

  • Metadata

  • Attributes

  • Generating Code

  • Assemblies


Prerequisites

It is recommended that students have at least one month of experience programming in an object-oriented environment before taking this course.


Microsoft - Training Solutions Partner - Microsoft Certified Trainers - MCT Superstars Award FY24


Terms & Conditions

The supply of this course by Lumify Work is governed by the booking terms and conditions. Please read the terms and conditions carefully before enrolling in this course, as enrolment in the course is conditional on acceptance of these terms and conditions.


Request Course Information

Awaiting course schedule

If you would like to receive a notification when this course becomes available, enter your details below.

Personalise your schedule with Lumify USchedule

Interested in a course that we have not yet scheduled? Get in touch, and ask for your preferred date and time. We can work together to make it happen.



Offers

  • Power Platform 7 Course Program
    Become Microsoft Certified with the PL-900 exam Access 7 courses in our Microsoft Power Platform Training package. Microsoft's Power Platform enables users to analyse data, build apps, automate processes and create virtual agents. Learn to use the Power Platform to solve business problems by pulling the capabilities of many apps together. Demonstrate your skill and capability with the PL-900 Power Platform Certification. Our Power Platform Certification Package brings together seven of Nexacu's highly successful courses, along with Microsoft's official exam and certification, to deliver exceptional value. For the same price as the seven courses, you'll also receive the official exam, a free re-sit, unlimited practice tests, unlimited study support and, upon successfully passing the exam, the official Microsoft certification: Power Platform Fundamentals. Certification: Microsoft Certified: Power Platform Fundamentals Exam: PL-900: Microsoft Power Platform Fundamentals Cost: $4,589.00 incl GST Duration: 7 days of courses, plus 2-3 hours per week Inclusions: 7 x courses, Unlimited support, Practice exam, Exam plus 1 resit
  • Power Platform 4 Course Program
    Become Microsoft Certified with the PL-900 exam Access 4 courses in our Microsoft Power Platform Training package. Microsoft's Power Platform enables users to analyse data, build apps, automate processes and create virtual agents. Learn to use the Power Platform to solve business problems by pulling the capabilities of many apps together. Demonstrate your skill and capability with the PL-900 Power Platform Certification. Our Power Platform Certification Package brings together seven of Nexacu's highly successful courses, along with Microsoft's official exam and certification, to deliver exceptional value. For the same price as the seven courses, you'll also receive the official exam, a free re-sit, unlimited practice tests, unlimited study support and, upon successfully passing the exam, the official Microsoft certification: Power Platform Fundamentals. Certification: Microsoft Certified: Power Platform Fundamentals Exam: PL-900: Microsoft Power Platform Fundamentals Cost: $3,114.00 incl GST Duration: 4 days of courses, plus 2-3 hours per week Inclusions: 4 x courses, Unlimited support, Practice exam, Exam plus 1 resit
  • Microsoft Word 3 Course Program
    Certification: Microsoft Certified: Word Specialist or Word Expert Explore the package for 3 Microsoft Word Training Courses. Demonstrate your Word knowledge with a Microsoft Certified achievement. Word skills are highly sought after. Be confident in your knowledge and skill level. Gain an upper hand in a competitive workforce with specialised skills and expertise in Word. Our flexible packages allow you to choose your level of certification between associate or expert. The MO-100 and MO-101 exams and their respective credentials demonstrate to employers your extensive knowledge of Word. Our successful courses, combined with Microsoft's official exams and certifications, deliver exceptional value. For the same price, our bundle courses will provide you with all of the perks of our Word package, including a Microsoft practice exam, the official exam, a free re-sit, and, upon successfully passing the exam, the official Microsoft certification. Exam: MO-100 or MO-101 Cost: $1,684.00 incl. GST Duration: 3 days of courses Plus home practice Inclusions: 3 x courses + Practice exam
  • Microsoft Word 2 Course Program
    Certification: Microsoft Certified: Word Specialist or Word Expert Explore the package for 2 Microsoft Word Courses. Demonstrate your Word knowledge with a Microsoft Certified achievement. Word skills are highly sought after. Be confident in your knowledge and skill level. Gain an upper hand in a competitive workforce with specialised skills and expertise in Word. Our flexible packages allow you to choose your level of certification between associate or expert. The MO-100 and MO-101 exams and their respective credentials demonstrate to employers your extensive knowledge of Word. Our successful courses, combined with Microsoft's official exams and certifications, deliver exceptional value. For the same price, our bundle courses will provide you with all of the perks of our Word package, including a Microsoft practice exam, the official exam, a free re-sit, and, upon successfully passing the exam, the official Microsoft certification. Exam: MO-100 or MO-101 Cost: $1,254.00 incl. GST Duration: 2 days of courses Plus home practice Inclusions: 2 x courses + Practice exam
  • Digital Literacy Certification
    Earn your Digital Literacy Certification Access the Microsoft Office 365 Training Package. Elevate your core competencies from Word to PowerPoint, Excel and Power BI. Attend our instructor-led courses in-person or join remotely and learn from our team of experienced Microsoft Certified Trainers. Digital literacy training builds confidence across a range of areas. The courses provide foundational to intermediate knowledge of the most widely used applications in today’s workplace. Showcase your achievements and build your professional profile with this verifiable digital credential. Certification: Nexacu Digital Literacy Exam: Course Attendance Cost: $2,664.00 incl. GST Duration: 4 - 6 weeks Inclusions: 6 Instructor-led courses
  • PowerPoint 2 Course Program
    Become Microsoft PowerPoint certified and stand out from the crowd Validate your specialised skills with PowerPoint Level 1 and 2. Our two courses are jam-packed with tips and tricks that will revolutionise how you create presentations. The MO-300 exam and PowerPoint Associate certification will demonstration to employers your extensive knowledge of PowerPoint. We deliver great value by combining our two PowerPoint courses and the Microsoft certification into one package. In your certification package you will receive a Microsoft practice exam, the official exam, a free re-sit, and upon successfully passing the exam, the official Microsoft certification. Certification: Microsoft Certified: PowerPoint Associate Exam: MO-300 Cost: $1,224.00 incl. GST Duration: 2 days of courses Plus home practice Inclusions: 2 x courses + Practice exam
  • Excel 2 Course Program
    Become a Microsoft Excel certified expert with MO-200 or MO-201 Embark on the journey with Excel Advanced & Expert Courses. Proficiency in Excel is a valuable asset that can open doors to countless opportunities. Our comprehensive training programs will equip you with the necessary skills and knowledge to excel in Excel. Choose between the Excel Specialist or Excel Expert exam options, and upon successful completion, earn one of the prestigious Microsoft Certifications. Certification: Microsoft Certified: Excel Specialist or Excel Expert Exam: MO-201 Cost: $1,394.00 incl. GST Duration: 2 days of courses Plus 2-3 hours per week Inclusions: 2 x courses + Practice exam
  • Excel 3 Course Program
    Become a Microsoft Excel certified expert with MO-200 or MO-201 Embark on the journey with Excel Intermediate, Advanced & Expert Courses. Proficiency in Excel is a valuable asset that can open doors to countless opportunities. Our comprehensive training programs will equip you with the necessary skills and knowledge to excel in Excel. Choose between the Excel Specialist or Excel Expert exam options, and upon successful completion, earn one of the prestigious Microsoft Certifications. Certification: Microsoft Certified: Excel Specialist or Excel Expert Exam: MO-201 Cost: $1,909.00 incl. GST Duration: 3 days of courses Plus 2-3 hours per week Inclusions: 3 x courses + Practice exam
  • Excel 4 Course Program
    Become a Microsoft Excel certified expert with MO-200 or MO-201 Embark on the journey with Excel Beginner, Intermediate, Advanced & Expert Courses. Proficiency in Excel is a valuable asset that can open doors to countless opportunities. Our comprehensive training programs will equip you with the necessary skills and knowledge to excel in Excel. Choose between the Excel Specialist or Excel Expert exam options, and upon successful completion, earn one of the prestigious Microsoft Certifications. Certification: Microsoft Certified: Excel Specialist or Excel Expert Exam: MO-201 Cost: $2,369.00 incl. GST Duration: 4 days of courses Plus 2-3 hours per week Inclusions: 4 x courses + Practice exam
  • Power BI 3 Course Program
    Become Microsoft Certified and stand out from the crowd Demonstrate your Power BI knowledge with a Microsoft Certified achievement. Book and sit Intermediate, Advanced & Dax Power BI Courses. Power BI skills are highly sought after by business intelligence professionals. Gain confidence in your knowledge and skill level in business intelligence tools by getting a Power BI certification. PL-300 has replaced DA-100. As Microsoft Power BI use starts to become more widespread across industries, employers are seeking specialised skills and expertise in performing technical tasks such as creating customised visual reports and utilising the essential features of the Power BI desktop. Certification: Microsoft Certified: Data Analyst Associate Exam: PL-300: Microsoft Power BI Data Analyst Cost: $2509.00 incl. GST Duration: 3 days of courses + Plus 2-3 hours per week Inclusions: 3 x courses, Unlimited support, Practice exam, Certification exam + 1 free resit of the exam only
  • Power BI 4 Course Program
    Become Microsoft Certified and stand out from the crowd Demonstrate your Power BI knowledge with a Microsoft Certified achievement. Book and sit Beginner, Intermediate, Advanced & Dax Power BI Courses. Power BI skills are highly sought after by business intelligence professionals. Gain confidence in your knowledge and skill level in business intelligence tools by getting a Power BI certification. PL-300 has replaced DA-100. As Microsoft Power BI use starts to become more widespread across industries, employers are seeking specialised skills and expertise in performing technical tasks such as creating customised visual reports and utilising the essential features of the Power BI desktop. Certification: Microsoft Certified: Data Analyst Associate Exam: PL-300: Microsoft Power BI Data Analyst Cost: $2899.00 incl. GST Duration: 4 days of courses + Plus 2-3 hours per week Inclusions: 4 x courses, Unlimited support, Practice exam, Certification exam + 1 free resit of the exam only
  • Power BI 2 Course Program
    Become Microsoft Certified and stand out from the crowd Demonstrate your Power BI knowledge with a Microsoft Certified achievement. Book and sit the Advanced & Dax Power BI Courses. Power BI skills are highly sought after by business intelligence professionals. Gain confidence in your knowledge and skill level in business intelligence tools by getting a Power BI certification. PL-300 has replaced DA-100. As Microsoft Power BI use starts to become more widespread across industries, employers are seeking specialised skills and expertise in performing technical tasks such as creating customised visual reports and utilising the essential features of the Power BI desktop. Certification: Microsoft Certified: Data Analyst Associate Exam: PL-300: Microsoft Power BI Data Analyst Cost: $1,934.00 incl. GST Duration: 2 days of courses + Plus 2-3 hours per week Inclusions: 2 x courses, Unlimited support, Practice exam, Certification exam + 1 free resit of the exam only