1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 11:38:21 +02:00

Make Environment.NewLine const instead of static readonly

This commit is contained in:
Brian Fiete 2024-10-26 13:42:55 -04:00
parent 1226810984
commit ca2c781301

View file

@ -8,9 +8,9 @@ namespace System
public static class Environment
{
#if BF_PLATFORM_WINDOWS
public static readonly String NewLine = "\r\n";
public const String NewLine = "\r\n";
#else
public static readonly String NewLine = "\n";
public const String NewLine = "\n";
#endif // BF_PLATFORM_WINDOWS