mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 11:12:36 +01:00
Make NewLineChars internal
This commit is contained in:
parent
faf594833d
commit
0e08da9165
@ -19,9 +19,13 @@ namespace Nikse.SubtitleEdit.Logic
|
||||
{
|
||||
public static class Utilities
|
||||
{
|
||||
public static readonly char[] NewLineChars = Environment.NewLine.ToCharArray();
|
||||
public const string WinXP2KUnicodeFontName = "Times New Roman";
|
||||
|
||||
/// <summary>
|
||||
/// Cached environment new line characters for faster lookup.
|
||||
/// </summary>
|
||||
internal static readonly char[] NewLineChars = Environment.NewLine.ToCharArray();
|
||||
|
||||
public static byte[] ReadAllBytes(String path)
|
||||
{
|
||||
byte[] bytes;
|
||||
|
Loading…
Reference in New Issue
Block a user