/* * Test.IConvertable.cs * * Copyright © 2009 * Diversified Technical Systems, Inc. * All Rights Reserved */ using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace DTS.Serialization { // *** see Test.cs *** public partial class Test { public delegate void ReportErrors(List errors); /// /// An object that expresses this interface can convert itself to and from a /// object. /// /// public interface IConvertable { /// /// Convert this object to a . /// /// /// /// The equivalent of this object. /// /// Test ToDtsSerializationTest( ); /// /// Initialize this object using the specified . /// /// /// /// The with which this object will be initialized from. /// /// void FromDtsSerializationTest( Test test, ReportErrors reportErrors ); } } }