Ok, Here's what I've got so far:
And obiously, the above code won't compile.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(); } ..... ..... ...




Reply With Quote