private Vector3? _target;
public Vector3? target
{
get
{
return _target;
}
set
{
_target = value;
}
}
Is this nullable get set property correct code wise? Will this work essentially the same as this:
public Vector3? target {get;set}