在我的xamarin ios项目中,我正在从文件中获取一些数组

使用

NSArray TimeFilePath = NSBundle.MainBundle.PathForResource("Time","txt");
            arrTime =  NSArray.FromFile(TimeFilePath);

现在我必须将TimeFilePath转换为列表

我尝试了以下操作,但失败了
List<string>items = (List<string>)TimeFilePath;

帮我了解如何将NSArray转换为C#中的列表

最佳答案

听起来好像您想要arrTime(而不是TimeFilePath)中的列表,因为PathForResource返回string,因此您在问题中的强制使用的变量不正确。

有很多方法可以做到这一点,但我建议您使用.NET而不是Apple API来实现此目的,例如

var TimeFilePath = NSBundle.MainBundle.PathForResource("Time","txt");
var lines = System.IO.File.ReadLines (TimeFilePath);
var arrTime = List<string> (lines);

关于c# - 如何在xamarin iOS中将NSArray强制转换为List <String>,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31679955/

10-12 02:17