namespace BinaryObjectScanner.ASN1 { #pragma warning disable IDE0011 /// /// Methods related to Object Identifiers (OID) and ASN.1 notation /// public static partial class ObjectIdentifier { /// /// Parse an OID in separated-value notation into ASN.1 notation /// /// List of values to check against /// Current index into the list /// ASN.1 formatted string, if possible /// public static string ParseOIDToASN1Notation(ulong[] values, ref int index) { // TODO: Once the modified OID-IRI formatting is done, make an ASN.1 notation version return null; } } #pragma warning restore IDE0011 }