锐锐器评估

发布于 2024-10-18 01:06:23 字数 187 浏览 1 评论 0原文

我正在评估 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦罢 2024-10-25 01:06:23

您为什么不点击建议,然后 Resharper 将为您进行更正呢?

我猜你的代码是这样的:

var oc = new OracleConnection();    
oc.Blabla = blabla;

如果你允许的话,Resharper 会做的是:

var oc = new OracleConnection { Blabla = blabla };

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:

var oc = new OracleConnection();    
oc.Blabla = blabla;

And what Resharper will do if you let it, is:

var oc = new OracleConnection { Blabla = blabla };
§普罗旺斯的薰衣草 2024-10-25 01:06:23

您误读了该消息。

Resharper 告诉您在构造对象后使用对象初始值设定项设置属性,如下所示:

var oc = new OracleConnection { ConnectionString = "..." };

此外,您应该使用 using 语句关闭连接。

You're misreading the message.

Resharper is telling you to use an object initializer to set properties after constructing it, like this:

var oc = new OracleConnection { ConnectionString = "..." };

Also, you should close the connection using a using statement.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文