I was trying to make a struct with 2 variables, Double and PictureBox. People suggested that I should use class instead of struct. When I try to create the class. It won't let me add PictureBox card;
it's just underlining it red.
Any solution or reason why? or suggestion to how I can do. I just need a variable, that can hold picturebox and a double. So I can use it as an array.
C# PictureBox variable in a class
1k Views Asked by GK28 At
2
A class would be easier, and I would also recommend using a
List
instead ofarray
. Example:To add things to the list you will need to make a method:
Which you can then call like this:
For this you will need to reference
System.Windows.Forms