namespace ns
{
class Class1
{
Nullable<int> a;
}
}
will not compile: The type or namespace name 'Nullable' could not be found (are you missing a using directive or an assembly reference?) <-- missing 'using System;
'
but,
namespace ns
{
class Class1
{
int? a;
}
}
will compile! (.Net 2)
do you know why?