XML Serialization and Deserialization C# & Exam 70-483 Prep

preview_player
Показать описание
Please follow me on Twitter to get more updates on memes, tech news, devops/developer content!

Github Link :

Other links explaining XML Serializer and info about it:

A quick and beginner level introduction to XML Serialization in C#.
It is IMPORTANT to note we are using XMLSerializer which is one of few methods to achieve XML Serialization.

And yes, we will cover what limitations XML Serializer has and what not.

We cover how to set up some groundwork to make data Serializable.

How to use said set up data to be Serialized into a XML file.
How to Deserialize an XML File back into data objects.

And Finally, we cover what kind of questions will be expected to be answered on the C# 70-483 Exam.

Time stamps are as follows :
00:00 - Intro
1:56 - Important factoids about XML Serializer
3:25 - Setting up data for Serialization
5:12 - XML Serialization
11:46 - XML Deserialization
15:04 - C# 70-483 Exam Question Prep
Рекомендации по теме
Комментарии
Автор

Github Link :

Other links explaining XML Serializer and info about it:



A quick and beginner level introduction to XML Serialization in C#.
It is IMPORTANT to note we are using XMLSerializer which is one of few methods to achieve XML Serialization.

And yes, we will cover what limitations XML Serializer has and what not.

We cover how to set up some groundwork to make data Serializable.

How to use said set up data to be Serialized into a XML file.
How to Deserialize an XML File back into data objects.

And Finally, we cover what kind of questions will be expected to be answered on the C# 70-483 Exam.

Time stamps are as follows :

1:56 - Important factoids about XML Serializer
3:25 - Setting up data for Serialization
5:12 - XML Serialization
11:46 - XML Deserialization
15:04 - C# 70-483 Exam Question Prep

CodeDoge
Автор

Civilization and Decivilization. Nice :)

midizengm
Автор

helpful! Do you have any more C# exam -prep videos?

patrickgomes
Автор

How do you make gridview to show XML with inner child element. My gridview incorrectly shows inner child elements all in one column.
XML:

<?xml version="1.0" encoding="utf-8"?>
<Person ID="1 ">
<Name> Mr.A</Name>
<Description>
<Age> 30 </Age>
<JobDescription> Accountant </JobDescription>
</Description>
</Person>
</ArrayOfPerson>


Gridview:


ID Name Description
1 Mr.A VisualStudio's Solution name + ".Description" <---- no Age and JobDescription columns

jumbo