Files
SabreTools.Serialization/SabreTools.Serialization/ObjectIdentifier/Parser.dot.cs
2026-01-25 14:30:18 -05:00

26 lines
862 B
C#

using System;
namespace SabreTools.Data.ObjectIdentifier
{
/// <summary>
/// Methods related to Object Identifiers (OID) and dot notation
/// </summary>
public static partial class Parser
{
/// <summary>
/// Parse an OID in separated-value notation into dot notation
/// </summary>
/// <param name="values">List of values to check against</param>
/// <returns>List of values representing the dot notation</returns>
public static string? ParseOIDToDotNotation(ulong[]? values)
{
// If we have an invalid set of values, we can't do anything
if (values is null || values.Length == 0)
return null;
var stringValues = Array.ConvertAll(values, v => v.ToString());
return string.Join(".", [.. stringValues]);
}
}
}