mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 04:22:20 +02:00
Make Environment.NewLine const instead of static readonly
This commit is contained in:
parent
1226810984
commit
ca2c781301
1 changed files with 2 additions and 2 deletions
|
@ -8,9 +8,9 @@ namespace System
|
||||||
public static class Environment
|
public static class Environment
|
||||||
{
|
{
|
||||||
#if BF_PLATFORM_WINDOWS
|
#if BF_PLATFORM_WINDOWS
|
||||||
public static readonly String NewLine = "\r\n";
|
public const String NewLine = "\r\n";
|
||||||
#else
|
#else
|
||||||
public static readonly String NewLine = "\n";
|
public const String NewLine = "\n";
|
||||||
#endif // BF_PLATFORM_WINDOWS
|
#endif // BF_PLATFORM_WINDOWS
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue