febb6bced6
Reduced allocations by replacing string.Substring with ReadOnlySpan<char>.Slice
11 lines
195 B
C#
11 lines
195 B
C#
#nullable enable
|
|
#pragma warning disable CS1591
|
|
|
|
namespace MediaBrowser.MediaEncoding.Subtitles
|
|
{
|
|
public static class ParserValues
|
|
{
|
|
public const string NewLine = "\r\n";
|
|
}
|
|
}
|