Simon Keep
Simon Keep

Reputation: 10002

Is it possible using Resharper to remove an object initializer?

Resharper 4.5 has the ability to turn the contstuction of an object followed by the setting of properties on that object into the object initializer format.

My question is can it go the other way and remove the user of an object initializer?

Upvotes: 10

Views: 329

Answers (1)

user15486
user15486

Reputation:

I don't know about 4.5 specifically, but Resharper can currently (v7-8) do this - put your cursor on the opening brace of the object initializer, hit alt+enter, and select "to assignment statements"

This video shows you how.

Upvotes: 6

Related Questions