处理键字符串的最佳方法
我正在 Web 应用程序中工作,总是需要使用一些键将一些值保存到对象中,例如:
Session["CurrentUser"] = Users.CurrentUser;
我尝试将它们放入资源文件中,但这没有意义,因为我不需要本地化它们,并且每次我从文件中获取字符串时,资源文件生成的代码都会查找区域性。
处理这些键以避免拼写不匹配的最佳方法是什么?
我正在使用 Visual Studio 2010 和 ASP.NET MVC2
I'm working in a web applications and always i need to use some keys to save some values into object like :
Session["CurrentUser"] = Users.CurrentUser;
I tried to put them into a resource file but it doesn't make sense as i will not need to localize them and the code generated by the resource file looks for the culture every time i get a string from the file.
what is the best way to handle those keys in order to avoid spelling mismatches?
I'm using Visual Studio 2010 and ASP.NET MVC2
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用常量:
然后:
此外,编译器不太关心拼写或语法错误,只要字符串匹配就可以了:-)
You could use constants:
and then:
Also the compiler doesn't care much about spelling or grammar mistakes, as long as the strings match he is OK :-)