how to handle list properties in csharp of string type

Code Example - how to handle list properties in csharp of string type

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