1
Does Visual Studio Rot the Mind?
(charlespetzold.com)
Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!
Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.
Hope you enjoy the instance!
Rules
Follow the wormhole through a path of communities !webdev@programming.dev
I don't think it's true that it works best by doing bottom-up. I develop top-down all the time.
Whenever you need a new function/method/struct field/enum variant, just write its name where you are going to use it. Then intellisense will complain that it doesn't exist. Press Ctrl+. (Or whatever you have keybinded to "apply suggestion") And now it suddenly exists and intelligence works perfectly fine. It will just place a
todo!()
orraise UnimplementedException
or whatever so you don't forget to implement it later.Yeah that is true. Not all IDEs support that though.