This is a migrated thread and some comments may be shown as answers.

Feature suggestion (VB.NET): introduce with

1 Answer 20 Views
Refactorings
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Ross Presser
Top achievements
Rank 1
Ross Presser asked on 03 Oct 2012, 05:49 PM
Another (free) refactoring tool I once used, I don't remember the name, was able to refactor this:

foo.x = 1
foo.y = 2
foo.z = 3

To this:

With foo
  .x = 1
  .y = 2
  .z = 3
End With

When foo is, instead, something horrible like foo.bar.quuxes(37).items.First ... this can be very useful.

1 Answer, 1 is accepted

Sort by
0
Zdravko
Telerik team
answered on 09 Oct 2012, 06:55 AM
Hi,

 Thanks for the suggestion.
You can post your ideas and suggestions at our new JusCode Feedback portal (if they are not already there) and vote for them.
The most popular and important requests will be targeted for implementation.
Thanks.

Greetings,
Zdravko
the Telerik team

Explore the entire Telerik portfolio by downloading Telerik DevCraft Ultimate.

Tags
Refactorings
Asked by
Ross Presser
Top achievements
Rank 1
Answers by
Zdravko
Telerik team
Share this question
or