I have a Winform in c# and I'm trying to build a hashtable with a list of buttons that I have. IE: Monday0700Button, Monday0730Button, Monday0800Button, and so on. In the hashtable I am trying to order these, so that if I need to use a button, and the button that follows it, I can use the hashtable key. IE: if I need to color the background of Monday0730 and Monday 0800, I can somehow tell it to find the next key in the list.
How do I add these buttons into a hashtable so that I can use them in this capacity. Thanks.