how to handle array getter setter in csharp of string type

Code Example - how to handle array getter setter in csharp of string type

                
                        public List<string> List
    {
        get { return list; }
        set { list = value; }
    }