If I have an enum type:
public enum Sport { Tennis = 0; Football = 1; Squash = 2; Volleyball = 3; }
Can I somehow add durin
No, you cannot modify types at runtime. You could emit new types, but modifying existing ones is not possible.