我想在Xamarin中以编程方式设置我的图像对象的源代码。我有一个文本文件,它有超过200个文件名。我逐行阅读。所以看看我想做什么(不是在Xamarin.Forms中)
string[] MyFileNames = new string[] { };
MyFileNames = ReadedTextFileVariable.Split(System.Environment.NewLine);
ImageObject.ImagePath = MyFileNames[2]; //its an example. i want to put a string path. uri is not working
提前致谢。