This is embarrassing to admit, but I've been developing for decades and have just been using basic breakpoints. Thanks for the level up!
@IAmTimCorey29 күн бұрын
I am glad it was helpful.
@PekDraine14 күн бұрын
Haha, same here. But basic breakpoints does the job. =)
@mohameddabbour696129 күн бұрын
2017: baby developer watching every single video of your channel to learn how to do stuff 2024: omg it seems like i cant debug thank you tim ❤ you never disappoint
@IAmTimCorey29 күн бұрын
I'm glad it was helpful.
@jonathanblackwell4229 күн бұрын
Tim, you wizard! I've been using Visual Studio since VS 2008 and you just taught me stuff. I've used conditional breakpoints, but seemingly never explored the rest of those features.
@IAmTimCorey29 күн бұрын
I am glad it was helpful.
@TomRaf24 күн бұрын
Thanks for the vid. I've been already using about 50-60% of this. Recently I discovered the breakpoint groups and found them kind of helpful even though haven't used them anywhere yet :D Now I have a clearer picture of why they might be helpful and where to use them.
@IAmTimCorey23 күн бұрын
I am glad it was helpful.
@satyabratamohapatra339728 күн бұрын
Thank you Tim.The import/export breakpoint feature is awesome. To be honest i was not aware of that feature ever exist in VS.
@IAmTimCorey22 күн бұрын
I am glad it was helpful.
@yaroslavg605526 күн бұрын
Tim, you are magician) Thank you for this tutorial
@IAmTimCorey25 күн бұрын
You are welcome.
@dotnetMasterCSharp28 күн бұрын
Most useful for beginners🎉
@IAmTimCorey28 күн бұрын
Thanks!
@dandandan0129 күн бұрын
I can't even count the hours that conditional breakpoints have saved me. It's something that everyone should know!
@IAmTimCorey29 күн бұрын
Agreed!
@ThomasArdal29 күн бұрын
Excellent video. I always name my Azure Functions 'Run'. A functional breakpoint working across solutions would be awesome for those. Not sure if that is possible without export/import, though.
@IAmTimCorey29 күн бұрын
That's an interesting idea. You would need to export and import them, though.
@Zakaria_TheWolf29 күн бұрын
This Is Really an Amazing Lesson And important As well , i only Use The Normal Breakpionts But Today i Learn That There A Lot To Solve Usng This Futures Of Multiple Breakpionts Thank You For This Amazing Video ✅✅ Iwill Save This Video For The Future scenarios because Right Now Im Still In The Entry-level
@IAmTimCorey29 күн бұрын
I am glad it was helpful.
@enihi29 күн бұрын
Function breakpoints are great when you want to break in an assembly that you haven't loaded the code for. Combined with Visual Studio built in decompile, very fast on huge projects.
@IAmTimCorey29 күн бұрын
Thanks for sharing!
@KennyThaKoala28 күн бұрын
A video on dependency injection, ioc containers, and the composition root would be very appreciated.
@IAmTimCorey28 күн бұрын
Thanks for the suggestion. Please add it to the list on the suggestion site so others can vote on it as well: suggestions.iamtimcorey.com/
@jeffsherman96388 күн бұрын
Hello Tim, While upgrading an app from .NET 5 to .NET 8 , I started getting errors in my code. Long story short, it ended up that I had script debugging turned on. When I turned it off, the app ran fine. The error occurred when it was trying to render a shtml page using pull down menus from a database. The breakpoints didn’t make it clear why this problem occurred.
@IAmTimCorey8 күн бұрын
Script debugging is tricky, because scripts often have bugs that are just passed over. The web can be a messy place.
@jeffsherman96388 күн бұрын
Is the best practice to leave it on or off?
@IAmTimCorey8 күн бұрын
I'd leave it off typically until you need it.
@AlexanderOrtizRosada22 күн бұрын
This becomes even more powerful when is combined with DebuggerDisplay attributes