How can i give a class instance the name of an existing variable. I am trying like this string hex = "BF43F"; Zeugh hex = new Zeugh(); but its wrong. I want to create an object BF43F with the properties of Zeugh class.
How can i give a class instance the name of an existing variable. I
Share
Sounds like you want a
Dictionary<string, Zeugh>. For example:(later)