Click here to Skip to main content
15,886,518 members
Articles / Programming Languages / XML

An XML Serializable Base Class

Rate me:
Please Sign up or sign in to vote.
3.33/5 (3 votes)
25 Feb 2009MIT3 min read 32K   357   16  
XmlObject is the class to derive from when you need high-performant XML serializable objects.

Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Myren.Xml.Serialization.Debugger", "Myren.Xml.Serialization.Debugger\Myren.Xml.Serialization.Debugger.csproj", "{3CEE9C69-6AC1-42FD-9023-E7A5726B3722}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Myren.Xml.Serialization", "Myren.Xml.Serialization\Myren.Xml.Serialization.csproj", "{38E077D5-BDB8-44B9-BB5C-E1BA8837C6A7}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Myren.Xml.Serialization.Example", "Myren.Xml.Serialization.Example\Myren.Xml.Serialization.Example.csproj", "{7B4ADAD6-3D36-4012-80C2-9107B401A6F3}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{3CEE9C69-6AC1-42FD-9023-E7A5726B3722}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{3CEE9C69-6AC1-42FD-9023-E7A5726B3722}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{3CEE9C69-6AC1-42FD-9023-E7A5726B3722}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{3CEE9C69-6AC1-42FD-9023-E7A5726B3722}.Release|Any CPU.Build.0 = Release|Any CPU
		{38E077D5-BDB8-44B9-BB5C-E1BA8837C6A7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{38E077D5-BDB8-44B9-BB5C-E1BA8837C6A7}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{38E077D5-BDB8-44B9-BB5C-E1BA8837C6A7}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{38E077D5-BDB8-44B9-BB5C-E1BA8837C6A7}.Release|Any CPU.Build.0 = Release|Any CPU
		{7B4ADAD6-3D36-4012-80C2-9107B401A6F3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{7B4ADAD6-3D36-4012-80C2-9107B401A6F3}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{7B4ADAD6-3D36-4012-80C2-9107B401A6F3}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{7B4ADAD6-3D36-4012-80C2-9107B401A6F3}.Release|Any CPU.Build.0 = Release|Any CPU
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The MIT License


Written By
Software Developer (Senior)
Norway Norway
Software Engineer at FAST, a Microsoft Subsidiary, in Oslo, Norway. Background in C++/PASCAL. Specialized in .NET and XML.

Comments and Discussions