Coding Syntax Question

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}

Yeah, since you don’t have additional logic in the first case.