Table of Contents

Enum LrcLineEnding

Namespace
ModernLrc
Assembly
ModernLrc.dll

Line-ending style for writing.

[SuppressMessage("Design", "CA1028:Enum storage should be Int32", Justification = "byte is intentional — option records are small and dense.")]
public enum LrcLineEnding : byte

Fields

Lf = 0

LF (\n) — default and recommended.

Crlf = 1

CRLF (\r\n).

Cr = 2

CR (\r) — legacy.

System = 3

Resolves to NewLine; falls back to Lf if not LF/CRLF/CR.