Update of /cvsroot/nullabletypes/NullableTypes/src/Types
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4298/src/Types
Modified Files:
DbNullConvert.cs
Log Message:
Correct exception raised XML documentation for NullableTimeSpan.
Index: DbNullConvert.cs
===================================================================
RCS file: /cvsroot/nullabletypes/NullableTypes/src/Types/DbNullConvert.cs,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** DbNullConvert.cs 6 Oct 2005 16:05:35 -0000 1.6
--- DbNullConvert.cs 11 Oct 2005 12:19:41 -0000 1.7
***************
*** 16,19 ****
--- 16,20 ----
// 28-Jan-2005 DamienG Upgrade Added support for NullableGuid and added regions.
// 05-Sep-2005 DamienG Upgrade Added NullableTimeSpan.
+ // 11-Oct-2005 DamienG Bugfix Correct exception raised XML documentation for NullableTimeSpan.
//
***************
*** 456,461 ****
/// <paramref name="x"/> is null.
/// </exception>
! /// <exception cref="System.InvalidFormatException">
! /// <paramref name="x"/> is not DBNull, <see cref="System.TimeSpan"/> or <see cref="System.Int6$" />.
/// </exception>
public static NullableTimeSpan ToNullableTimeSpan(object x) {
--- 457,462 ----
/// <paramref name="x"/> is null.
/// </exception>
! /// <exception cref="System.InvalidCastException">
! /// <paramref name="x"/> is not DBNull, <see cref="System.TimeSpan"/> or <see cref="System.Int64" />.
/// </exception>
public static NullableTimeSpan ToNullableTimeSpan(object x) {
|