icsharpcode / RefactoringEssentials

Refactoring Essentials for Visual Studio
MIT License
638 stars 120 forks source link

Suggestion for object initializer. #233

Open FickoDeLux opened 8 years ago

FickoDeLux commented 8 years ago

I have:

var fmd = new MainDialog();
fmd.DbFile = dbfile;
fmd.RetColumnIndex = retcolumnindex;
fmd.SearchColumnIndex = searchcolumnindex;

fmd.width = DialogWidth;
fmd.height = DialogHeight;
fmd.SearchFirstCS = SearchFirstCaseSensitive;
fmd.SearchAnyCS = SearchAnyCaseSensitive;
fmd.RetValue = RetValue;
fmd.ShowDialog();

Was waiting wenn the proposal for object initializer would pop up but not happening. Guess didn't implemented jet.

I like to put this on my wish list. ;-)

AndrewBoklashko commented 7 years ago

Currently working on this feature.