Subversion Repository Public Repository

WOX2

Diff Revisions 13 vs 14 for /trunk/CSharp/tests/ISimpleNamespace.cs

Diff revisions: vs.
  @@ -1,21 +1,40 @@
1 - using System;
1 + using System;
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>
2 21
3 22 namespace woxTests
4 23 {
5 24 internal interface ISimpleNamespace
6 25 {
7 - /**
8 - * Serialize an object to a String - deserialize should return an equivalent object
9 - * @param inp non-null object to serialize
10 - * @return non-null String - null is ok if inp is null
11 - */
26 + /// <summary>
27 + /// Serialize an object to a String - deserialize should return an equivalent object
28 + /// </summary>
29 + /// <param name="inp">non-null object to serialize</param>
30 + /// <returns>non-null String - null is ok if inp is null</returns>
12 31 String Serialize( Object inp );
13 32
14 - /**
15 - * deerialize an object from a String - serialize should generate the string
16 - * @param inp non-null String to parse
17 - * @return non-null Object - null is ok if inp is null
18 - */
33 + /// <summary>
34 + /// Deserialize an object from a String - serialize should generate the string
35 + /// </summary>
36 + /// <param name="inp">non-null String to parse</param>
37 + /// <returns>non-null Object - null is ok if inp is null</returns>
19 38 Object Deserialize( String inp );
20 39 }
21 - }
40 + }