We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 446ba00 commit e4b6b44Copy full SHA for e4b6b44
1 file changed
Asn1Parser/Universal/Asn1Enumerated.cs
@@ -53,6 +53,6 @@ void m_decode(Asn1Reader asn) {
53
if (value > UInt64.MaxValue) {
54
throw new InvalidDataException(String.Format(InvalidType, TYPE.ToString()));
55
}
56
- Value = Convert.ToUInt64(value);
+ Value = (UInt64)value;
57
58
0 commit comments