Hello I have static class lets say
internal static class MyStaticClass {
private static readonly IDictionary<SomeStringType, string> someDicName =
new Dictionary<SomeStringType, string> {
{someEnum.enum, "SomeText"},
}
}
But I need to add new value inside this enum based on some global value is there any possibility how can I do it? In normal class I can put it in constructor but what can I do in static class? Thanks for any ideas.