Wie deklariere ich ein statisches Wörterbuchobjekt innerhalb einer statischen Klasse? Ich habe es versucht public static class ErrorCode { public const IDictionary<string, string> ErrorCodeDic = new Dictionary<string, string>() { { "1", "User name or password problem" } }; } Der...