在.net 2.0中提供了一个新的类型修饰符,可用于创建空类型,如下
int? x;
x=null,
传入x即可。
如果要作为参数传递的话null要用
if (Parameter.Value == null)
{
Parameter.Value = DBNull.Value;
}
做一个有趣的人
在.net 2.0中提供了一个新的类型修饰符,可用于创建空类型,如下
int? x;
x=null,
传入x即可。
如果要作为参数传递的话null要用
if (Parameter.Value == null)
{
Parameter.Value = DBNull.Value;
}