how to move the camera rotation in phone in csharp by touch

Code Example - how to move the camera rotation in phone in csharp by touch

                
                        void Awake() {
         target = GameObject.FindGameObjectWithTag("Player").transform;
     }
     void Update () {
         transform.position = target.position + offset;

     }