I am working with dot net standard (2.0) spec and found out some enums have repeating values,
for example: (this one is also in 4.7.2)
enum XPathResultType {
Number = 0,
Navigator = 1,
String = 1,
Boolean = 2,
NodeSet = 3,
Any = 5,
Error = 6,
}