C
C#3w ago
Emn4tor

Edit Enum

Anyone got an Idea how I could edit (add something to) an Enum? Like Content Warnung saves its ShopCategories in one, but I wanna add a new one... Everything tells me its not possible but yeah would be sad lol
11 Replies
ero
ero3w ago
i don't understand the question. to add something to an enum, you... just add a new line?
enum E
{
A
}

// add something
enum E
{
A,
B
}
enum E
{
A
}

// add something
enum E
{
A,
B
}
Emn4tor
Emn4torOP3w ago
yeah sry, I dont have acces to that enum, bc I am modding a game Forgot to mention that
Jimmacle
Jimmacle3w ago
you can't if the game intends to let you mod a list of selections they need to design the code differently
Emn4tor
Emn4torOP3w ago
Someone told me there is a way, but i dont remember anymore...
asdf
asdf3w ago
Enum types are basically just aliases for int types so you can just cast an int that is not defined in the enum
Emn4tor
Emn4torOP3w ago
But I dont have access to that enum
Jimmacle
Jimmacle3w ago
asdf is saying you can assign an "invalid" value to an enum and it will just take it, but it won't have a name associated with the value
Emn4tor
Emn4torOP3w ago
hm
arion
arion3w ago
eg.
E example = (E)400;
E example = (E)400;
Harbour
Harbour3w ago
Also wherever this enum is used you’d probably want a way to account for this new enum via some logic of some sort
SleepWellPupper
Passing the illegal value to code you don't control will likely invalidate its assumptions on that variable though, possibly causing unexpected behavior or exceptions. So be aware of that. You could also define your own enum that is basically a clone of the one you want to extend; add all the members you want. Then you define an extension method for converting your extended version to the original. Here you'd have to handle the question of how to convert your new members to the original enum type For example, imagine the game code could use a variable of the enum type for indexing into an array; if you chose a larger value than allowed, that could throw an IndexOutOfRangeException.

Did you find this page helpful?