This series deserves so many more views than this!
@Ryan_Parmelee5 жыл бұрын
Yep
@imagine96164 жыл бұрын
yes
@clarissagonzales70145 жыл бұрын
Clear and straight to the point! Even non-programmers can understand this. Thank you so much!!
@shonshon4 жыл бұрын
well, if you' re learning about how to programming ,then it is also mean that you're already programmer isn't? xD
@quantomic11064 жыл бұрын
Straight, informative and to the point. No BS exception caught. Love your tutorials.
@ManuelGraphFilms4 жыл бұрын
2:55 my guy said illegal hahaha.. you just gained a new sub man
@knockedgoose42062 жыл бұрын
You are a mentor to a fledgling programmer such as myself. Thank you for making these concepts easy to digest!
@armanbecirovic22382 жыл бұрын
Thanks for this very useful and simplified explanation. Really like the way you easily explain and present something. :)
@sinapazhwak89763 жыл бұрын
I wish you were my professor for my entire programming and web-designing studies.
@piki2172 жыл бұрын
The best tutorial video i have seen yet
@joshuabharath67743 жыл бұрын
every since college ive just been listening to your video and its so simple to understand unlike those other C# video lol
@olmusic7856 Жыл бұрын
great explaniation bro tnx alot
@cristinemariel.teruel51614 жыл бұрын
Thank you, Mike! I understand the topic well and I answer my exercises correctly. I can pass my OOP subject already!!
@futuregeneration83482 жыл бұрын
Your way of teaching is great thank you so much
@weebofthesouth41133 жыл бұрын
"That's illegal!" LOL that made me laugh. Thank you for this video I have an assignment due tonight and this helped me a lot.
@otetumooluwaseun39488 ай бұрын
Wow! Amazing! I asked for a cake, I got a whole supermarket. Thank you for the video.
@Saskamon3 жыл бұрын
Everytime I see this guy, I can tell for sure that I will learn something. Greath thanks!
@mubeenhassan23874 жыл бұрын
Thank you so much man.. Finally i understand this ...... keep going man
@bonganisedibe46364 жыл бұрын
far better than my lecture! Thanks Man
@study-zl3it2 жыл бұрын
Hi! I'm studying for my finals and your videos are really helpful, thank you!
@stoka432 жыл бұрын
Thanks mike, you have just got yourself a new subscriber
@Ayomidejoshuah2 жыл бұрын
your videos are really great, watching your videos made me understand c sharp better✊✊
@fcolell4 жыл бұрын
Thanks Mike for explaining so clearly exception
@guywnoname Жыл бұрын
straight to the point and very clear and i understood it very well 👍
@austinnotes79063 жыл бұрын
Man I'm writing Programming tomorrow and this has made me feel so much at at ease about Exception Handling
@ЕренБояджъ3 жыл бұрын
This 10 min vid helped me more than the book i was reading. Thanks for the help man
@upcom1ng1163 жыл бұрын
What were you reading? So I don't buy it lol
@tripernnn55813 жыл бұрын
This was so easy to understand even though im am austrian.....great explanation
@MrJo0ntee2 жыл бұрын
I really love your videos! Im currently taking programming on a highschool level, and my teacher has theese videos, they suck! this video would probobly, not gonna lie, be 40min long! becouse he types with one finger, does misprints and talk so slow. So having theese to look at insted is so good! Thanks!
@usaamahpatel95773 жыл бұрын
Watching this in 2021. Absolutely wonderful explanation!!!
@alexfila26193 жыл бұрын
thanks man, you are great, explained in first 60 sec all I was trying to understand about exceptions. Like!
@muhammadrizwanmalik8956 Жыл бұрын
very clear to unerstand! thanks
@sadeghmirzaee82584 жыл бұрын
OMG, man! you throw me some information that is so much useful to me and now I don't have to plan to watch a complete C# intermadiate/advanced tutorial. ( mean that part that you can catch a specific exception type and to something with that, that is like if statements for exceptions. ) Tnx for that...
@jinju37853 жыл бұрын
dude now i know how to find bugs and errors easily thank you so much❤️❤️
@gargoyled_drake4 жыл бұрын
i was looking for this, and no one could give a straight answer like you!
@SweetPeachannel2 жыл бұрын
i do love your video ..
@milos17992 жыл бұрын
I'm a bit late, but king, for this turorial, thank you very much!
@HardstylezSuperstaar4 жыл бұрын
I do wonder how old are you? This dude seems to be some super programmer. I just learn to program in swedish and my school gives me swedish sites to follow. But after I found this dudes videos im in here every day to learn. This should be used by all schools in Programming.
@Rd.2535 Жыл бұрын
this is what i love and what i went good teaching style
@rostadeveloper3 жыл бұрын
Really nice video! Thumbs up!
@arrensantos48694 жыл бұрын
Hi Mike! I've been looking for a clean explanation of try-catch block and this one was THE BEST so far!!! Thanks a LOT!!! Any chance you can add an explanation about the throw keyword? If there already is, please direct me to it. Also, is there any particular order when laying out catch blocks for multiple exceptions?
@rayoh20114 жыл бұрын
Very nice Mike! Thank you!
@scottisitt4 жыл бұрын
This was awesome, Mike!
@dariorud3 жыл бұрын
Brilliant video!
@davidksoku48603 жыл бұрын
I love you Man, You are a great teacher ❤️💛💚
@thanhhaminh93833 жыл бұрын
this video is very clearly, thank you
@athariealfuraih81153 жыл бұрын
Great explanation! Thank you so much
@xtrinsicdesign3 жыл бұрын
Really helped me out tonight, ty
@gallacticvr41572 жыл бұрын
EXACTLY WHAT I NEEDED THANK YOU
@alkam04214 жыл бұрын
I FINALLY UNDERSTAND! thank you so much :')
@milestailsprower45554 ай бұрын
i also handle too to prevent some proogram quit on unhandled ones.
@dougwarner593 жыл бұрын
First off the video was very informative and easy to understand....but.... I still don't understand the point of handling exceptions in the way you describe. exception handling takes up a lot more time than just checking for the errors the normal way. it would be more efficient just to check to see if the second value is a zero or a letter before preforming the code and then let the user know the mistake he or she made. In this particular case I could see possibly using a general exception to catch an error that I may not have thought of; then have the exception send a message telling where exactly the problem occured for trouble shooting purposes. Could you give an example of using exception handling when normal error checking would not be able to handle the same problem? (other than using a catch-all general exception as I described earlier.)
@Jason-mi3nu3 жыл бұрын
Helped me understand it and use it Thx
@tomslater83743 жыл бұрын
super clear and helpful, thank you!
@adrianasilveira45613 жыл бұрын
Great explanation. Thank you
@llamadrama1692 ай бұрын
Great video, thanks
@triangle4studios4 жыл бұрын
This was exceptional
@lovegeneration84643 жыл бұрын
Well explained, thank you 🙂 👍
@rsk69293 жыл бұрын
This paired with the goto function works amazingly. i wish we had goto in python
@thegoodkidboy77262 жыл бұрын
kowai
@rsk69292 жыл бұрын
@@thegoodkidboy7726 ?
@thegoodkidboy77262 жыл бұрын
@@rsk6929 people don't like goto very much
@rsk69292 жыл бұрын
@@thegoodkidboy7726 ok, why
@abdelrahmanmohamedowis76197 ай бұрын
Thank You
@EmmyCodes-d9n9 ай бұрын
Loved it!
@xSAxHellboy14 жыл бұрын
Great video man
@simplycoding347 Жыл бұрын
Great work
@simplyjemelah82763 жыл бұрын
hi do you have a video for C# System.ArithmeticException?
@mweshiols Жыл бұрын
thanks this was well explained
@Ethan-xj7hb Жыл бұрын
ty my bro helped me a ton
@jasmin99434 жыл бұрын
you are awesome thank you for the video !!
@北科大-蘇詳崴2 жыл бұрын
Thank you teacher!
@dudem54475 жыл бұрын
awesome, man, thanks!
@Sir_Smax0073 жыл бұрын
Truly wish you're my teacher
@hamzarashid75794 жыл бұрын
Thank you for this video
@jarell28052 жыл бұрын
How to catch an exception in an a, b, c, and d input only? How to catch numbers and texts such as w,q, t or r
@Hikizuru3 жыл бұрын
Bro. So good.
@trumbaron2 жыл бұрын
Perfect! Thanks!
@hydarnasiru21584 жыл бұрын
let's say you enter a number and a letter how can throw an exception then make the code loop back to the beginning so you can try again without ending the program?
@marklitvin92914 жыл бұрын
But what about letting the user re-enter the values once again? I did miss that part. Where was it? After the exception was shown.
@eonshade62973 жыл бұрын
Good tutorial
@gdj7774 жыл бұрын
Mike! Come back!
@kunaldedhia55022 жыл бұрын
How can i handle exceptions globally in console applications? Please help
@aviperetz13 жыл бұрын
Thanks 👌👍
@janaewelsh80564 жыл бұрын
Can someone explain what the e represents? Is it a variable? Does it have to be the letter e or could it be any other letter? Not sure what purpose it serves in the code exactly
@baradel93944 жыл бұрын
"e" is an object of type Exception or any other one of the types that were in the catch block. Basically, it has all the error information inside of it, such as an error message (e.Message) or the current stack trace (e.Stacktrace). It could have been called any other name, but as convention it usually is called "e" or "ex"
@HaydenHeun4 жыл бұрын
Thank You!
@jakeogsimer94454 жыл бұрын
I want the program to ask again for the user's input after the error message prints out on the catch. How can you do that?
@mikellwilliams60954 жыл бұрын
You can make a bool variable named something like "response" that starts off FALSE. Then, a do-while loop that contains your try-catch which contains your question and input prompts. It will loop while(response = false) If everything goes well and dandy and the user has correct inputs... then the last line of code after your prompts is response = true; and the do while condition will fail and exit the loop. But if the user enters something that breaks the code, then the exception is caught and response is never set to true. So the do-while will keep asking the question. Until the user answers it right.
@mikellwilliams60954 жыл бұрын
bool response = false; do{ try{ // Your Questions and Inputs response = true; }catch(Exception e) // Whatever you want to do with your exception } }while(response == false)
@lancelotxiii90894 жыл бұрын
@@mikellwilliams6095 Bless you! This is exactly what I came here for!
@franciscrypto91432 жыл бұрын
same with if else statement?
@chamith2564 жыл бұрын
What is the difference between Write and WriteLine?