Subversion Repository Public Repository

WOX2

Diff Revisions 13 vs 14 for /trunk/CSharp/tests/wox/serial/tests/objects/MultiArrays.cs

Diff revisions: vs.
  @@ -1,17 +1,29 @@
1 1 using System;
2 2
3 + /// <header>
4 + /// <wox>
5 + /// <version>1.0</version>
6 + /// <author>Carlos R. Jaimez Gonzalez</author>
7 + /// <author>Simon M. Lucas</author>
8 + /// <site>http://woxserializer.sourceforge.net/</site>
9 + /// </wox>
10 + /// <wox>
11 + /// <version>1.5</version>
12 + /// <author>Steven M Lewis</author>
13 + /// </wox>
14 + /// <wox>
15 + /// <version>2.0</version>
16 + /// <author>George A Smith</author>
17 + /// <svn>http://woxserializer.sourceforge.net/</svn>
18 + /// <note>XML form for vs 2 is more compact and therefor incompatible with vs 1</note>
19 + /// </wox>
20 + /// </header>
21 +
3 22 namespace wox.serial.tests.objects
4 23 {
5 - /**
6 - * This class provides an example of a class with a primitive bidimensional array as field.
7 - * The main method uses the Easy class to serialize TestMultiArrays object to XML (save method);
8 - * and to de-serialize the XML to a TestMultiArrays object back again (load method).
9 - * http://woxserializer.sourceforge.net/
10 - *
11 - * Authors: Carlos R. Jaimez Gonzalez
12 - * Simon M. Lucas
13 - * Version: TestMultiArrays.cs - 1.0
14 - */
24 + /// <summary>
25 + /// This class provides an example of a class with a primitive bidimensional array as field.
26 + /// </summary>
15 27
16 28 public class MultiArrays
17 29 {
  @@ -40,4 +52,4 @@
40 52 return display;
41 53 }
42 54 }
43 - }
55 + }