码迷,mamicode.com
首页 > 其他好文 > 详细

System.Resources.MissingManifestResourceException:

时间:2014-08-20 10:27:56      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   使用   io   ar   div   log   

好久没遇到这种错误了 ,记录一下。

未能找到任何适合于指定的区域性或非特定区域性的资源。请确保在编译时已将“Test.Common.Resource.Messages.resources”正确嵌入或链接到程序集“Test”,或者确保所有需要的附属程序集都可加载并已进行了完全签名。

 

原因是路径不对。

如Messages.resx。

命名空间是:namespace     Test.Common.Resource

     /// <summary>
        ///   返回此类使用的缓存的 ResourceManager 实例。
         /// </summary>
        [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
        public static global::System.Resources.ResourceManager ResourceManager
        {
            get
            {
                if (object.ReferenceEquals(resourceMan, null))
                {
                   //这里面的路径一定要注意:<命名空间名+资源名称>的格式 
                global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Test.Common.Resource.Messages", typeof(Messages).Assembly);
                    resourceMan = temp;
                }
                return resourceMan;
            }
        }

System.Resources.MissingManifestResourceException:,布布扣,bubuko.com

System.Resources.MissingManifestResourceException:

标签:style   blog   color   使用   io   ar   div   log   

原文地址:http://www.cnblogs.com/zhaox583132460/p/3923935.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!