NullableTypes/src/Types NullableInt16.cs,1.12,1.13 NullableInt32.cs,1.19,1.20
Status: Inactive
Brought to you by:
lukadotnet
From: <luk...@pr...> - 2004-01-30 16:32:36
|
Update of /cvsroot/nullabletypes/NullableTypes/src/Types In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12403/src/Types Modified Files: NullableInt16.cs NullableInt32.cs Log Message: Index: NullableInt16.cs =================================================================== RCS file: /cvsroot/nullabletypes/NullableTypes/src/Types/NullableInt16.cs,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** NullableInt16.cs 8 Dec 2003 21:57:27 -0000 1.12 --- NullableInt16.cs 30 Jan 2004 16:31:03 -0000 1.13 *************** *** 5,8 **** --- 5,9 ---- // Luca Minudel (luk...@us...) // Damien Guard (dam...@us...) + // Partha Choudhury (par...@us...) // // Date Author Changes Reasons *************** *** 19,24 **** // 06-Dic-2003 Luca Bug Fix Replaced Xml Schema id "NullableInt16XmlSchema" with "NullableInt16" // because VSDesigner use it as type-name in the auto-generated WS client Proxy ! // 06-Dic-2003 Luca Bug Fix Replaced Target Namespace for Xml Schema to avoid duplicate namespace with // other types in NullableTypes // --- 20,26 ---- // 06-Dic-2003 Luca Bug Fix Replaced Xml Schema id "NullableInt16XmlSchema" with "NullableInt16" // because VSDesigner use it as type-name in the auto-generated WS client Proxy ! // 06-Dic-2003 Luca Bug Fix Replaced Target Namespace for Xml Schema to avoid duplicate namespace with // other types in NullableTypes + // 30-Dec-2003 Partha Upgrade Replaced hardcoded MInValue and MaxValue values with Int16.MinValue/MaxValue // *************** *** 49,57 **** /// Maximum value of this type of object /// </summary> ! public static readonly NullableInt16 MaxValue = new NullableInt16 (32767); /// <summary> /// Minimum value of this type of object /// </summary> ! public static readonly NullableInt16 MinValue = new NullableInt16 (-32768); /// <summary> /// Null initializer for this object. --- 51,59 ---- /// Maximum value of this type of object /// </summary> ! public static readonly NullableInt16 MaxValue = new NullableInt16 (sys.Int16.MaxValue); /// <summary> /// Minimum value of this type of object /// </summary> ! public static readonly NullableInt16 MinValue = new NullableInt16 (sys.Int16.MinValue); /// <summary> /// Null initializer for this object. Index: NullableInt32.cs =================================================================== RCS file: /cvsroot/nullabletypes/NullableTypes/src/Types/NullableInt32.cs,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** NullableInt32.cs 8 Dec 2003 21:57:27 -0000 1.19 --- NullableInt32.cs 30 Jan 2004 16:31:03 -0000 1.20 *************** *** 4,7 **** --- 4,8 ---- // Authors: Luca Minudel (luk...@us...) // Damien Guard (dam...@us...) + // Partha Choudhury (par...@us...) // // Date Author Changes Reasons *************** *** 20,23 **** --- 21,25 ---- // 06-Dic-2003 Luca Bug Fix Replaced Target Namespace for Xml Schema to avoid duplicate namespace with // other types in NullableTypes + // 30-Dec-2003 Partha Upgrade Replaced hardcoded MInValue and MaxValue values with Int16.MinValue/MaxValue // *************** *** 48,52 **** /// The value for this constant is 2.147.483.647. /// </remarks> ! public static readonly NullableInt32 MaxValue = new NullableInt32(2147483647); /// <summary> --- 50,54 ---- /// The value for this constant is 2.147.483.647. /// </remarks> ! public static readonly NullableInt32 MaxValue = new NullableInt32(sys.Int32.MaxValue); /// <summary> *************** *** 57,61 **** /// The value for this constant is -2.147.483.648. /// </remarks> ! public static readonly NullableInt32 MinValue = new NullableInt32(-2147483648); /// <summary> --- 59,63 ---- /// The value for this constant is -2.147.483.648. /// </remarks> ! public static readonly NullableInt32 MinValue = new NullableInt32(sys.Int32.MinValue); /// <summary> |