how to make something addforce in the direction of something in untiy

Code Example - how to make something addforce in the direction of something in untiy

                
                        dir = target.transform.position - transform.position;
dir = dir.normalized;
rigidbody.AddForce(dir * force);