我想操作 Drawable 中的所有图像文件。我已经编写了这段代码。它出什么问题了?
string[] all = System.Reflection.Assembly.GetEntryAssembly().GetManifestResourceNames();
int[] thumbIDs;
foreach (string resourceName in all )
{
int j=1;
if (resourceName.EndsWith(".jpg"))
{
thumbIDs[j]= Resource.Drawable.resourceName;
}
j=j+1;
}