Click here to Skip to main content
Click here to Skip to main content
Articles » Languages » XML » Serializing » Downloads
 

Yet Another XML Serialization Library for the .NET Framework

By , 2 Oct 2012
 
YAXLib-src-1.1.zip
YAXLib
DemoApplication
Properties
Settings.settings
SampleClasses
YAXLib
Properties
YAXLib-src-1.zip
Settings.settings
YAXLib-src-1_1.zip
Settings.settings
YAXLib-src-2.0.zip
Settings.settings
LocalTestRun.testrunconfig
YAXLib.vsmdi
YAXLibTests
Properties
Test References
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using YAXLib;

namespace DemoApplication.SampleClasses
{
    [YAXComment("How multi-line comments are serialized as multiple XML comments")]
    public class MultipleCommentsTest
    {
        [YAXComment(@"Using @ quoted style 
                     comments for multiline comments")]
        public int Dummy { get; set; }

        [YAXComment("Comment 1 for member\nComment 2 for member")]
        public int SomeInt { get; set; }

        public override string ToString()
        {
            return GeneralToStringProvider.GeneralToString(this);
        }

        public static MultipleCommentsTest GetSampleInstance()
        {
            return new MultipleCommentsTest() { SomeInt = 10 };
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of use 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

About the Author

Sina Iravanian
Software Developer
Australia Australia
Member
A software designer and developer

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130516.1 | Last Updated 2 Oct 2012
Article Copyright 2009 by Sina Iravanian
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid