#pragma warning disable IDE0060 // Remove unused parameter
namespace SabreTools.ObjectIdentifier
{
///
/// Methods related to Object Identifiers (OID) and ASN.1 notation
///
public static partial class Parser
{
///
/// Parse an OID in separated-value notation into ASN.1 notation
///
/// List of values to check against
/// ASN.1 formatted string, if possible
///
public static string? ParseOIDToASN1Notation(ulong[]? values)
{
// TODO: Once the modified OID-IRI formatting is done, make an ASN.1 notation version
return null;
}
}
}