锐锐器评估
我正在评估 resharper,我注意到该软件有一个怪癖。我不确定这是否真的是一个怪癖。 这是我的代码:
var oc = new OracleConnection();
Resharper 建议为此使用对象初始化程序而不是 new 关键字。如何使用对象初始值设定项进行连接?有什么想法吗?
I am evaluating resharper and I noticed a quirk in the software. I am not sure if this is truly a quirk.
Here's my code:
var oc = new OracleConnection();
Resharper is suggesting using an Object Initializer for this instead of new keyword. How do you use an object initializer for a connection? Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您为什么不点击建议,然后 Resharper 将为您进行更正呢?
我猜你的代码是这样的:
如果你允许的话,Resharper 会做的是:
Why don't you click on the suggestion and Resharper will do the correction for you?
I guess the code you have is something like:
And what Resharper will do if you let it, is:
您误读了该消息。
Resharper 告诉您在构造对象后使用对象初始值设定项设置属性,如下所示:
此外,您应该使用
using
语句关闭连接。You're misreading the message.
Resharper is telling you to use an object initializer to set properties after constructing it, like this:
Also, you should close the connection using a
using
statement.