Book Image

C# 7 and .NET Core Solutions [Video]

By : Dirk Strauss
Book Image

C# 7 and .NET Core Solutions [Video]

By: Dirk Strauss

Overview of this book

C# has recently been open-sourced and brings a host of exciting new features that allows you to write better codes and resolve common programming challenges. This course will equip you with all the new features in a practical approach to solve everyday problems faced by developers. You will explore the new features of C# and .NET to get started with building the foundation of your application. In this course you will create regular expression, work with Files, Streams, and Serialization, and also handle task and exceptions. Then you work with MVC, enhance your coding performance and build a responsive and cross platform application from extracting data, search tool, notification panel and finally publish your application live. The code bundle for this video course is available at- https://github.com/PacktPublishing/C-Sharp-7-and-.NET-Core-Solutions
Table of Contents (10 chapters)
8
Composing Event-Based Programs Using Reactive Extensions
Chapter 5
Working with Files, Streams, and Serialization
Content Locked
Section 6
Using XmlSerializer
From the name you probably guessed that theXmlSerializer serializes data into XML. It gives you more control over the XML structure of the serialized data. Typical real-world examples for using this serializer would be to maintain compatibility with XML web services. It is also an easy medium to use when transmitting data using some type of message queuing (such as MSMQ or RabbitMQ). - Create a Student class - Create a class for a subject - Serialize the subject object