Parsing CultureInfo.InvariantCulture identifier

164 Views Asked by At

Let's say we have the following config:

{
  "en": "something for english language",
  "de": "something for german language",
  ""  : "something language independent"
}

By Microsoft documentation the identifier of Invariant culture is empty string, but I do not like this because it can be quite easily interpreted as no data. Is there any standard or defacto ID which represents invariant culture? I was thinking something like * or inv, but I would rather took something less subjective.

0

There are 0 best solutions below