1 Star 0 Fork 0

雪碧/CsvHelper-For-Unity

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
CsvReaderSubClassingTests.cs 945 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.Collections.Generic;
using System.Linq;
using CsvHelper.Tests.Mocks;
using Xunit;
namespace CsvHelper.Tests
{
public class CsvReaderSubClassingTests
{
[Fact]
public void GetRecordTest()
{
var parserMock = new ParserMock
{
{ "Id", "Name" },
{ "1", "one" },
{ "2", "two" },
};
var csvReader = new MyCsvReader(parserMock);
csvReader.GetRecords<Test>().ToList();
}
private class MyCsvReader : CsvReader
{
public MyCsvReader(IParser parser) : base(parser) { }
}
private class Test
{
public int Id { get; set; }
public string Name { get; set; }
}
}
}
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

搜索帮助