G
Guest
Why does this property "DateTime?" compile?
public DateTime? test
{
get
{
return DateTime.Now;
}
}
I figured it was special syntax but I couldn't find documentation
TIA,
public DateTime? test
{
get
{
return DateTime.Now;
}
}
I figured it was special syntax but I couldn't find documentation
TIA,