Click here to Skip to main content
15,884,177 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: VS 2022 a genuine wow moment Pin
Member 11032317-Aug-22 3:33
Member 11032317-Aug-22 3:33 
GeneralRe: VS 2022 a genuine wow moment Pin
Lance Milleson17-Aug-22 6:15
Lance Milleson17-Aug-22 6:15 
GeneralRe: VS 2022 a genuine wow moment Pin
Randor 15-Aug-22 22:44
professional Randor 15-Aug-22 22:44 
GeneralRe: VS 2022 a genuine wow moment Pin
Calin Negru15-Aug-22 22:48
Calin Negru15-Aug-22 22:48 
GeneralRe: VS 2022 a genuine wow moment Pin
OriginalGriff16-Aug-22 0:00
mveOriginalGriff16-Aug-22 0:00 
GeneralRe: VS 2022 a genuine wow moment Pin
pkfox16-Aug-22 0:55
professionalpkfox16-Aug-22 0:55 
GeneralRe: VS 2022 a genuine wow moment Pin
Calin Negru16-Aug-22 1:33
Calin Negru16-Aug-22 1:33 
GeneralRe: VS 2022 a genuine wow moment Pin
OriginalGriff16-Aug-22 1:56
mveOriginalGriff16-Aug-22 1:56 
Laugh | :laugh:
It's not quite that good, but if you do something like this:
var bananas = Fruit.GetFruits(Color.Yellow); 
Then later in the method type foreach(it will autofill with this:
foreach(var f in bananas)
If (as I much prefer) you use an explicit type:
List<Fruit> bananas = Fruit.GetFruits(Color.Yellow);
Then the autofill is explicit as well:
foreach(Fruit fruit in bananas)
All on a single TAB press.
Once you are used to it, it takes the typing out of the simple stuff, and it leaves you free to concentrate on the "why" you are doing it, instead of the "what".
"I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
"Common sense is so rare these days, it should be classified as a super power" - Random T-shirt
AntiTwitter: @DalekDave is now a follower!

General[edit]Re: VS 2022 a genuine wow moment Pin
Calin Negru16-Aug-22 8:15
Calin Negru16-Aug-22 8:15 
GeneralRe: VS 2022 a genuine wow moment Pin
OriginalGriff16-Aug-22 8:24
mveOriginalGriff16-Aug-22 8:24 
GeneralRe: [edit]Re: VS 2022 a genuine wow moment[edited] Pin
OriginalGriff16-Aug-22 9:21
mveOriginalGriff16-Aug-22 9:21 
GeneralRe: [edit]Re: VS 2022 a genuine wow moment[edited] Pin
Calin Negru17-Aug-22 4:54
Calin Negru17-Aug-22 4:54 
GeneralRe: [edit]Re: VS 2022 a genuine wow moment[edited] Pin
OriginalGriff17-Aug-22 5:56
mveOriginalGriff17-Aug-22 5:56 
GeneralRe: [edit]Re: VS 2022 a genuine wow moment[edited] Pin
Calin Negru17-Aug-22 6:27
Calin Negru17-Aug-22 6:27 
GeneralRe: [edit]Re: VS 2022 a genuine wow moment Pin
OriginalGriff16-Aug-22 20:04
mveOriginalGriff16-Aug-22 20:04 
GeneralRe: [edit]Re: VS 2022 a genuine wow moment Pin
Matt Bond17-Aug-22 3:14
Matt Bond17-Aug-22 3:14 
GeneralRe: [edit]Re: VS 2022 a genuine wow moment Pin
Calin Negru17-Aug-22 6:30
Calin Negru17-Aug-22 6:30 
GeneralRe: VS 2022 a genuine wow moment Pin
Calin Negru16-Aug-22 2:15
Calin Negru16-Aug-22 2:15 
GeneralRe: VS 2022 a genuine wow moment Pin
Richard MacCutchan16-Aug-22 2:16
mveRichard MacCutchan16-Aug-22 2:16 
GeneralRe: VS 2022 a genuine wow moment Pin
OriginalGriff16-Aug-22 2:19
mveOriginalGriff16-Aug-22 2:19 
GeneralRe: VS 2022 a genuine wow moment Pin
Marc Clifton16-Aug-22 1:00
mvaMarc Clifton16-Aug-22 1:00 
GeneralRe: VS 2022 a genuine wow moment Pin
Greg Utas16-Aug-22 1:16
professionalGreg Utas16-Aug-22 1:16 
GeneralRe: VS 2022 a genuine wow moment Pin
Marc Clifton16-Aug-22 5:38
mvaMarc Clifton16-Aug-22 5:38 
GeneralRe: VS 2022 a genuine wow moment Pin
Matt Bond17-Aug-22 3:16
Matt Bond17-Aug-22 3:16 
GeneralRe: VS 2022 a genuine wow moment Pin
dandy7216-Aug-22 3:32
dandy7216-Aug-22 3:32 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.