Ok, Here's what I've got so far:
Code:
namespace ShiftPage
{
    public partial class UserControl1 : UserControl
    {
        private string[] flavor = new string[16];  

        public string[] Flavor = new string[16]
        {
            get { return flavor[]; }
            set { flavor[] = value; }
        }

        public UserControl1()
        {
            InitializeComponent();
        }
.....
.....
...
And obiously, the above code won't compile.