how to handle list getter setter in csharp of string type

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

                
                        public string[] Array
    {
        get { return array; }
        set { array = value; }
    }