how to start a coroutine in csharp

Code Example - how to start a coroutine in csharp

                
                        void Start()
    {
        StartCoroutine(Test());
    }

    IEnumerator Test()
    {
        yield return new WaitForSeconds[2];
    }