Struct LrcTag
An ID tag in source order. Key is normalized to lowercase invariant by the parser; Value is verbatim.
public readonly record struct LrcTag : IEquatable<LrcTag>
- Implements
- Inherited Members
Constructors
LrcTag(string, string)
An ID tag in source order. Key is normalized to lowercase invariant by the parser; Value is verbatim.
public LrcTag(string Key, string Value)
Parameters
Properties
Key
Lowercase invariant tag key.
public string Key { get; init; }
Property Value
Value
Verbatim tag value.
public string Value { get; init; }