Update of /cvsroot/nullabletypes/NullableTypes/src/Types
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29645/src/Types
Modified Files:
NullableGuid.cs
Log Message:
Correct XML documentation for .Null and CompareTo (#1342483)
Index: NullableGuid.cs
===================================================================
RCS file: /cvsroot/nullabletypes/NullableTypes/src/Types/NullableGuid.cs,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** NullableGuid.cs 30 Oct 2005 15:38:15 -0000 1.9
--- NullableGuid.cs 31 Oct 2005 12:13:30 -0000 1.10
***************
*** 15,18 ****
--- 15,19 ----
// 11-Oct-2005 DamienG Upgrade Clean up and add missing XML documentation.
// 30-Oct-2005 Damieng Bugfix Correct some XML documentation comments as per issue #1342422.
+ // 31-Oct-2005 Damieng Bugfix Correct XML documentation for .Null and CompareTo (#1342483)
//
***************
*** 34,38 ****
--- 35,41 ----
private bool _notNull;
+ /// <summary>
/// Represents the null <see cref="NullableGuid"/>. This field is read-only.
+ /// </summary>
public static readonly NullableGuid Null;
***************
*** 143,151 ****
/// <item>
/// <term>A negative integer</term>
! /// <description>The value of this instance is less than the value of <paramref="value" />.</description>
/// </item>
/// <item>
/// <term>Zero</term>
! /// <description>The value of this instance is equal to the value of <paramref="value" />.</description>
/// </item>
/// <item>
--- 146,154 ----
/// <item>
/// <term>A negative integer</term>
! /// <description>The value of this instance is less than the value of <paramref name="value" />.</description>
/// </item>
/// <item>
/// <term>Zero</term>
! /// <description>The value of this instance is equal to the value of <paramref name="value" />.</description>
/// </item>
/// <item>
***************
*** 159,163 ****
/// </list>
/// </returns>
! /// <exception cref="System.ArgumentException"><paramref name="o"/> is not a <see cref="NullableGuid"/>.</exception>
public int CompareTo(object o)
{
--- 162,168 ----
/// </list>
/// </returns>
! /// <exception cref="System.ArgumentException">
! /// <paramref name="o"/> is not a <see cref="NullableGuid"/>.
! /// </exception>
public int CompareTo(object o)
{
|