如何将函数参数绑定到创建 ArgumentException 对象时提供的参数?
我经常有这样的函数:
Public Shared Function F(ByVal address as String)
所以基本上我想抛出 new ArgumentException("Invalid address!", "address")< /strong>
现在的问题是,当我使用内置的重构工具重命名局部变量时(假设我将地址重命名为 addr),我的参数异常中的字符串仍然是“address”而不是“addr”!
我想知道这个问题的最佳解决方案是什么? (手动跟踪或使用 Ctrl-F 搜索除外)
I often have functions that take arguments like this:
Public Shared Function F(ByVal address as String)
So basically I want to throw new ArgumentException("Invalid address!", "address")
Now problem is that when I'm using the built in refactoring tools to rename the local variables, (let's say i rename address to addr), The string in my argument exception is still "address" and not "addr"!
I'm wondering what's the best solution to this problem? (other than manually tracking or with Ctrl-F search)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 C# 中,您可以执行类似的操作:
然后您可以像这样使用它:
In C#, you can do something like that:
You would then use it like this:
ReSharper 可以处理这个问题。它还可以重命名字符串中出现的变量。
但是,我不确定他们的 VB.NET 支持有多好。
ReSharper can handle this. It can also rename occurrences of variables in strings.
However, I am not sure, how good their VB.NET support is.