I'm very new to c# and programming in general, so excuse my poor knowledge.
For school we have to create a blackjack game using windows form. I had to store the images of each card into a sorted list so i created a class called cardList and created a constructor which contained the the sorted list called cards. So it looks kinda like this:
Code:
public class cardList : Form1
    {
        SortedList cards = new SortedList();
...