温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:IFNuke1.1.0版源码
当前文件:
IFnuke110/Core/Data/MagicValue.cs,打开代码结构图
IFnuke110/Core/Data/MagicValue.cs,打开代码结构图1using System; 2
using System.Collections.Generic; 3
using System.Text; 4
5
namespace IFNuke.Data 6
{ 7
public class MagicValue 8
{ 9
public const int IdNull = -1; 10
public const int Int32Null = int.MinValue; 11
public const double DoubleNull = double.MinValue; 12
public const decimal DecimalNull = decimal.MinValue; 13
public static readonly DateTime DateTimeNull = new DateTime(1753, 1, 1, 12, 0, 0); 14
} 15
16
//public class IdType 17
//{ 18
// //public IdType(object o) 19
// //{ 20
// //} 21
22
// //public IdType(int i) 23
// //{ 24
25
// //} 26
27
// //public IdType(string s) 28
// //{ 29
// //} 30
//} 31
} 32





}
