Could someone please tell me what the ? symbol means in the following code:
public Rectangle? Limits
{
get
{
return _limits;
}
set
{
Could someone please tell me what the ? symbol means in the following code:
public Rectangle? Limits
{
get
{
return _limits;
}
set
{
It means it is a nullable type.
For example, DateTime?
can be null, whereas DateTime
cannot.