这两者之间的区别是什么(如果有的话)?
当前回答
从医生那里…
包含“\r\n”的字符串 非unix平台,或者字符串 Unix平台包含“\n”。
其他回答
这取决于平台。在Windows上,它实际上是“\r\n”。
从MSDN:
包含“\r\n”的字符串 非unix平台,或者字符串 Unix平台包含“\n”。
环境。NewLine在Windows上运行时会给出“\r\n”。如果你正在为基于Unix的环境生成字符串,你不需要“\r”。
环境。NewLine将返回运行代码的相应平台的换行符
当你在Mono框架中部署你的代码时,你会发现这非常有用
环境的精确实现。来自源代码的换行:
.NET 4.6.1中的实现:
/*===================================NewLine====================================
**Action: A property which returns the appropriate newline string for the given
** platform.
**Returns: \r\n on Win32.
**Arguments: None.
**Exceptions: None.
==============================================================================*/
public static String NewLine {
get {
Contract.Ensures(Contract.Result<String>() != null);
return "\r\n";
}
}
源
在。net Core中的实现:
/*===================================NewLine====================================
**Action: A property which returns the appropriate newline string for the
** given platform.
**Returns: \r\n on Win32.
**Arguments: None.
**Exceptions: None.
==============================================================================*/
public static String NewLine {
get {
Contract.Ensures(Contract.Result() != null);
#if !PLATFORM_UNIX
return "\r\n";
#else
return "\n";
#endif // !PLATFORM_UNIX
}
}
source (in System.Private.CoreLib)
public static string NewLine => "\r\n";
source(在System.Runtime.Extensions中)
从医生那里…
包含“\r\n”的字符串 非unix平台,或者字符串 Unix平台包含“\n”。
推荐文章
- 如何从枚举中选择一个随机值?
- 驻留在App_Code中的类不可访问
- 在链式LINQ扩展方法调用中等价于'let'关键字的代码
- dynamic (c# 4)和var之间的区别是什么?
- Visual Studio: ContextSwitchDeadlock
- 返回文件在ASP。Net Core Web API
- 自定义HttpClient请求头
- 如果我使用OWIN Startup.cs类并将所有配置移动到那里,我是否需要一个Global.asax.cs文件?
- VS2013外部构建错误"error MSB4019: The imported project <path> was not found"
- 从另一个列表id中排序一个列表
- 等待一个无效的异步方法
- 无法加载文件或程序集…参数不正确
- c#中枚举中的方法
- 如何从字符串中删除新的行字符?
- 如何设置一个默认值与Html.TextBoxFor?