在c#中动态获取资源名称

时间:2012-05-29 19:07:01

标签: embedded-resource

我想操纵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;
        }

0 个答案:

没有答案