Ai
1 Star 0 Fork 0

雪碧/CsvHelper-For-Unity

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
TestStringWriter.cs 859 Bytes
一键复制 编辑 原始数据 按行查看 历史
Josh Close 提交于 2022-04-28 00:58 +08:00 . Updated license headers.
// Copyright 2009-2022 Josh Close
// This file is a part of CsvHelper and is dual licensed under MS-PL and Apache 2.0.
// See LICENSE.txt for details or visit http://www.opensource.org/licenses/ms-pl.html for MS-PL and http://opensource.org/licenses/Apache-2.0 for Apache 2.0.
// https://github.com/JoshClose/CsvHelper
using System;
using System.IO;
namespace CsvHelper.Tests
{
/// <summary>
/// A <see cref="StreamWriter"/> class with configurable line ending for unit tests.
/// </summary>
public class TestStreamWriter : StreamWriter
{
private readonly string newLine;
public TestStreamWriter(Stream stream, string newLine = "\r\n") : base(stream)
{
this.newLine = newLine ?? throw new ArgumentNullException(nameof(newLine));
}
public override void WriteLine(string value)
{
base.Write(value);
base.Write(newLine);
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/SpritePlus/CsvHelper-For-Unity.git
git@gitee.com:SpritePlus/CsvHelper-For-Unity.git
SpritePlus
CsvHelper-For-Unity
CsvHelper-For-Unity
master

搜索帮助