Subversion Repository Public Repository

WOX2

Diff Revisions 13 vs 14 for /trunk/CSharp/src/wox/serial/Util.cs

Diff revisions: vs.
  @@ -3,18 +3,32 @@
3 3 using System.Reflection;
4 4 using System.Text;
5 5
6 - /**
7 - * The Util class provides static methods that are used by
8 - * SimpleReader and SimpleWriter. The methods of
9 - * this class are used by the serialization and de-serialization processes.
10 - *
11 - * Authors: Carlos R. Jaimez Gonzalez
12 - * Simon M. Lucas
13 - * Version: Util.cs - 1.0
14 - */
6 + /// <header>
7 + /// <wox>
8 + /// <version>1.0</version>
9 + /// <author>Carlos R. Jaimez Gonzalez</author>
10 + /// <author>Simon M. Lucas</author>
11 + /// <site>http://woxserializer.sourceforge.net/</site>
12 + /// </wox>
13 + /// <wox>
14 + /// <version>1.5</version>
15 + /// <author>Steven M Lewis</author>
16 + /// </wox>
17 + /// <wox>
18 + /// <version>2.0</version>
19 + /// <author>George A Smith</author>
20 + /// <svn>http://woxserializer.sourceforge.net/</svn>
21 + /// <note>XML form for vs 2 is more compact and therefor incompatible with vs 1</note>
22 + /// </wox>
23 + /// </header>
15 24
16 25 namespace wox.serial
17 26 {
27 + /// <summary>
28 + /// The Util class provides static methods that are used by SimpleReader and SimpleWriter.
29 + /// The methods of this class are used by the serialization and de-serialization processes.
30 + /// </summary>
31 +
18 32 public class Util
19 33 {
20 34 public static void Dump( Exception pException, TextWriter pWriter )
  @@ -58,7 +72,6 @@
58 72 return false;
59 73 }
60 74
61 - // Added Slewis
62 75 /// <summary>
63 76 /// Turn a String into a Type
64 77 /// </summary>
  @@ -126,4 +139,4 @@
126 139 throw new ApplicationException( "Unable to instantiate instance from Native Type" + zPlus );
127 140 }
128 141 }
129 - }
142 + }