C的导轨式夹具解串器#
C#中是否有开源解串器可以将RoR样式夹具读入给定类型?我试着用Google搜索,但实际上并没有太多出现。这似乎是别人可能已经完成的非常简单的事情。C的导轨式夹具解串器#
例fixture文件:
temperature_readings.yml
one: CelciusReading: 9.99
two:
CelciusReading: 23
库调用:
Dictionary<String, TemperatureReading> readings = Fixture.Get<TemperatureReading>("temperature_readings.yml");
预计产量会是这样的:
readings = new []{ {
Key = "one",
Value = new TemperatureReading { CelciusReading = 9.99 }
},
{
Key = "two",
Value = new TemperatureReading { CelciusReading = 23 }
}
};
回答:
原来, re是根据MIT许可证发布的名为YamlSerializer的库。
https://yamlserializer.codeplex.com/
以上是 C的导轨式夹具解串器# 的全部内容, 来源链接: utcz.com/qa/259104.html