Why Frame.X static methods from Deedle are generating warnings in VS 2017?

前端 未结 2 1322
我在风中等你
我在风中等你 2021-01-17 18:34

I downloaded the new VS 2017 yesterday and it is working fine, except that I am getting this warning on every line where I call the static method Frame.ReadCsv

2条回答
  •  感情败类
    2021-01-17 18:52

    It seems you have to use ReadCsv(path="file.csv") instead of ReadCsv(location="file.csv"). The first case provides you with an interface that has option values for optional settings instead of nullables, and addresses the correct overload.

提交回复
热议问题