I want to have a union case name like the following
type PrimaryDiagnosisSite =
| ``C00.0 - External upper lip``
Unfortunately, the compiler complains about the period in the name:
Invalid namespace, module, type or union case name
I'd like to keep the period in the union case name, if possible. The compiler doesn't like when I try to escape the period via backslash.
Is this possible?