Тёмный

Debugging C# Code in Visual Studio | Mosh 

Programming with Mosh
Подписаться 4 млн
Просмотров 364 тыс.
50% 1

🔥Get the COMPLETE course (80% OFF - LIMITED TIME): bit.ly/2KJLPuS
Learn to use debugging tools in Visual Studio to effectively debug your C# applications.
EXERCISE FILES
www.dropbox.com/s/qhgvi86vzvc...
TABLE OF CONTENT
10:32 Writing Reliable Code
19:52 Defensive Programming
27:41 Call Stack Window
29:28 Locals and Autos Windows
MY OTHER C# TUTORIALS:
Events and Delegates
• C# Events and Delegate...
Generics
• C# Generics Tutorial: ...
STAY IN TOUCH
Website: programmingwithmosh.com
Facebook: / programmingwithmosh
Twitter: / moshhamedani

Наука

Опубликовано:

 

15 сен 2015

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 66   
@michaelmiller7892
@michaelmiller7892 5 лет назад
Some of the most in-depth, easy-to-digest information on the subject I've seen. Thanks!
@yusef2610
@yusef2610 4 года назад
I always get happy when I search for C# guides and tips and Mosh shows up in the results. Big up!
@armenbakir112
@armenbakir112 4 года назад
man nice work i watched 8 videos and none of them explained the terms like step in and step out but after watching your video I got thanks to you and your hard work
@urigross
@urigross 4 года назад
Thank you Mosh for explaining in such a clear language, step by step all the small details.
@lifeissnowpiece4505
@lifeissnowpiece4505 Год назад
Sir you easily identified problems in program. but some peoples only made for subscribers and views . but sir you really learn from heart.
@robertstimmel1100
@robertstimmel1100 3 года назад
Thank you for this video! You always do such a great job explaining everything! So far, I have only watched your videos for this and data structures\Big O notation. I will be back for more.
@godrises8100
@godrises8100 9 месяцев назад
Geeez!!! Learned more from the constant ads
@supriyanaiya
@supriyanaiya Год назад
Best debugging video I've ever seen! Thank you, Mosh 😇
@arrensantos4869
@arrensantos4869 4 года назад
Awesome Debugging and Defensive programming tutorial. Would like to request that you create a tutorial for error handling, thank you!
@Seanog1231
@Seanog1231 6 лет назад
Much appreciated was putting print statements all over the place before.
@bernardchisumo4054
@bernardchisumo4054 8 лет назад
Hi I am having a error message in the code: Cannot convert from 'System.Collection.Generic.List to 'int' Cannot implicity convert 'int' to 'System.Collections.Generic.List . What does it mean?
@pel_wang55
@pel_wang55 2 года назад
hello can i get help how i can debug a file that was made after the main file when i debug a file it only runs the first file of cpp and then it completes it it doesn't run the second file that i have coded. if i wanted my second file to be debug i made a new project and make a new main file and the past my code there to debug. or it compels me write all the codes in one file and debug it.(too much code under one file is really messy) is there easy and simpler way to debug a particular file i want?
@abhayraghuvanshi5199
@abhayraghuvanshi5199 7 лет назад
Your tutorial are awesome !! I have completed c# console basics now what should i do next .
@zackydev
@zackydev 4 года назад
Can I get an F for respect for all those unlucky people who didn't know that there are C# tutorials from Mosh even after his "Learn C# Basics in 1 Hour" video?
@dosaimre
@dosaimre 2 года назад
excellent explanation, as ALWAYS from Mosh! Thanks.
@Layarion
@Layarion 4 года назад
Could you explain how to have a Application.Tests.Console launched Application.ConsoleUI AND still get debugging abilities in the non-test?
@kingtyphoon
@kingtyphoon 11 месяцев назад
Hi, this is a awesome tutorial! My first impression is that the syntax of C# looks similar that of JavaScript and PHP.
@brendanbassett8584
@brendanbassett8584 5 лет назад
A concise and informative video. Thank you so much!
@shivan2418
@shivan2418 4 года назад
I know that this algorithm is purely illustrative, but does C# not have packages like collections.Counter from python? I was messing around with things like this when I started coding, then found out in that collections and itertools had all those functions built already.
@riscy00
@riscy00 3 года назад
Hi, is there reason for not include auto caption or subtitle?
@jakubhronik8637
@jakubhronik8637 4 года назад
Instead of checking for count
@ultron7461
@ultron7461 3 года назад
Very good explanation sir. Thank you.
@jacobp4330
@jacobp4330 8 лет назад
Hello Mosh! Thanks for the quick video. I have a few questions. 1) So with the Call Stack, as you move back up the stack it shows you what line it last executed in that method before entering the new method? If so that seems like that would be good so that you don't have to read the whole method or wonder where it began to crash. If it is a long method then you can spend a lot of time trying to figure out where and what caused it. 2) How you know when you should throw an exception verses just alerting the user that his number is invalid? There is a rule of thumb or an article I should read? 3) How do I know which exception to throw? Do i just create the error and then throw the same exception? Should i learn or memorize a list of exceptions? Thanks!
@paulcurry8383
@paulcurry8383 2 года назад
Your visual studio looks different than mine. Do you have any visual mods/settings you’d recommend? Thanks!
@MrSB007
@MrSB007 3 года назад
Very helpful! Thank you :)
@timothywoldt8649
@timothywoldt8649 5 лет назад
Good stuff! Thanks :)
@nazrussel
@nazrussel 6 лет назад
you are simply brilliant. I would like subscribe one of your trainning course but its in dollar currency. I am from UK. How would I subscribe it out of USA.
@Young_as_Lenin
@Young_as_Lenin 5 лет назад
thx, you are talanted teacher
@sahasransupanda8169
@sahasransupanda8169 2 года назад
When we are excuting the statement var min= list[0] then the value of min should be 1 but why it's showing 0? Anyone who got this
@GoldenAngel3341
@GoldenAngel3341 3 месяца назад
Currently at 10:30 in this video. I also thought to list the shortucts, because I couldn't find them anywhere on this page atm. ------------------------------ F5| Run in debug mode Ctrl+F5| Run without debug mode Shift+F5| Stop the debug mode F9| Breakpoint F10| Step Over F11| Step Into Shift+F11| Step Out
@XXIcenturyblood
@XXIcenturyblood 8 месяцев назад
10:32 - Writing reliable code 19:53 - Defensive programming 27:38 - Call stack 29:29 - Locals and autos
@achalpandit4038
@achalpandit4038 Год назад
Awesome video
@semikolon4229
@semikolon4229 7 лет назад
Watch window option is missing in my visual studio. Which version of visual studio are you using?
@andreacicci2058
@andreacicci2058 4 года назад
The question is old but here is the answer, the watch option is available only if you are in debug mode (f5).
@bayoakins1004
@bayoakins1004 4 года назад
How do I get help with School assignments? I am a registered subscriber on your C# tutorial website.
@billythesunbeltsamurainapi3670
what about debugging in c
@wgsl2005
@wgsl2005 8 лет назад
great tutorial!
@deadaccount3070
@deadaccount3070 5 лет назад
My classmate in 6th grade has the same full name as yours.
@keithkatane4854
@keithkatane4854 3 года назад
Thank you, bro.
@veerabhadrarao258
@veerabhadrarao258 2 года назад
Clear cut explanation
@japhethjay4880
@japhethjay4880 8 лет назад
I know i might be bugging you right now, but the theme is really important to me, because it helps my vision, i have been putting on lenses for i don't know over 2 decades now, and just recently i started having migraines when i look at too bright a source of light, and most of the themes i use in visual studio even the dark one the white font-color is still too bright, so i just wanted to know more about the settings of the editor, if there is anything else you added after installing resharper.
@japhethjay4880
@japhethjay4880 8 лет назад
Thanks though, you have it installed, I will check on the syntax highlighting
@abdullahAboelkhair
@abdullahAboelkhair 3 года назад
Thank You
@zsomborv5976
@zsomborv5976 6 лет назад
Hello. I tried to solve the problem before going to the next video, what do you think of my solution? The 2nd & 3rd lines tell the user about the issue and ask for a new count-er from 1 to the size of the list. Then I check if the input can be parsed to integer if yes continue normally but if not then ask again. This way even if the input is a letter, symbol, a space or return key press, it will not be an issue. while(count < 1 || count > list.Count){ Console.WriteLine(" Az elvono ertek vagy kissebb mint 1 vagy nagyobb mint ahany szam van."); Console.WriteLine(" Irjon be egy elvono erteket 1-tol " + list.Count + "-ig:"); var uj_szam = Console.ReadLine(); bool uj_ = Int32.TryParse(uj_szam, out int count_); if(uj_ == false){ continue; } count = Int32.Parse(uj_szam); Console.Write(" Ujra szamolunk. "); }
@zsomborv5976
@zsomborv5976 6 лет назад
pastebin.com/6eLySgHE Is this good enough or could it have been done better / differently at such a beginner level?
@mohammedsadik3974
@mohammedsadik3974 6 лет назад
Thanks too much
@shimaxu
@shimaxu 8 лет назад
Can you upload the exercise file, so that it will be easier to follow along with, Thanks
@robertanic7799
@robertanic7799 8 лет назад
+Programming with Mosh Hi, your skills and knowledge is excellent and one of best I saw in tutorials. Keep up great work. Probably I will subscribe on Udemy for your tutorials to get more skills.
@noblejack9882
@noblejack9882 4 года назад
@@programmingwithmosh Hi, the link is broken :c could you update it?
@ThePasojim
@ThePasojim 3 года назад
A much better solution would be to post decriment the count variable in the while loop. Then you don't need all the convoluted if's and it will run without errors. If you enter return 17 lowest numbers and there are only 3 in the list.... the code returns 3! My solution causes not crashes even if you enter a neg number for the return number. It just returns an empty list//// no crashes no problems. I do not like ode that creates crashes!
@saifalradhi673
@saifalradhi673 8 лет назад
Great Job Mosh , Waiting for The Entity Framework course. I'm curious when u will upload it? :)
@saifalradhi673
@saifalradhi673 8 лет назад
+Programming with Mosh That is fine. at least I can use my effort to prepare for my thesis defense :D
@EgyptUnderGroundArmy
@EgyptUnderGroundArmy 8 лет назад
first comment :P I'm curious where do you come from? your name sounds middle eastern
@robertanic7799
@robertanic7799 8 лет назад
+EgyptUnderGroundArmy Second :) Great tutorial.
@shallpal9372
@shallpal9372 Год назад
#Mosh 🤩🙌
@dayanamarinaavilacastellan3532
@dayanamarinaavilacastellan3532 2 года назад
using System; using System.Collections.Generic; namespace CSharpFundamental { class Program { static void Main(string[] args) { var numbers = new List { 8, 9, 10, 11, 12, 13 }; var smallests = GetSmallests(numbers, 3); foreach(var number in smallests) Console.WriteLine(number); Console.ReadLine(); } public static ListGetSmallests(List list, int count) { var smallests = new List(); while(smallests.Count < count) { var minim = GetSmallest(list); smallests.Add(minim); list.Remove(minim); } return smallests; } public static int GetSmallest(List list) { //Assume the first number is the smallest var min = list[0]; for (var i = 1; i < list.Count; i++) { if (list[i] < min) min = list[i]; } return min; } } }
@muhdsyakir8625
@muhdsyakir8625 2 года назад
thanks
@DIEZ919191
@DIEZ919191 9 месяцев назад
Recorded 8 years ago, still actual 😅
@_NgoTanLoc
@_NgoTanLoc 3 года назад
I wish this video has sub language. It's hard for me to understand all :v. I maybe have to watch this many times.
@vinitpatil4990
@vinitpatil4990 7 лет назад
can u make videos on ethnic haking
@mc343cortana5
@mc343cortana5 6 лет назад
deploy=eset
@amsun6201
@amsun6201 7 лет назад
Your lesson don't follow any rhythm, jumping from scenario to scenario just confusing beginners.
@roadrageman1210
@roadrageman1210 5 месяцев назад
CONSOLE APPS ARE USELESS!
@teddylu6295
@teddylu6295 3 месяца назад
No, they’re not. Stay away from me with your f* GUI‘s which are slow, cumbersome and inefficient.
Далее
C# Classes Tutorial | Mosh
14:25
Просмотров 274 тыс.
Недооцененный котел в Симс 4
00:37
Amazing weight loss transformation !! 😱😱
00:24
C# Tutorial For Beginners - Learn C# Basics in 1 Hour
1:10:32
C# Events and Delegates Made Simple | Mosh
32:04
Просмотров 936 тыс.
How Do I Understand a Complex Codebase At Work?
10:39
Tips and Tricks for Debugging JavaScript
13:03
Просмотров 407 тыс.
C# Generics Tutorial: Whats and Whys | Mosh
19:57
Просмотров 258 тыс.
I've been using Redis wrong this whole time...
20:53
Просмотров 340 тыс.
Debugging Tips and Tricks Part 1
19:36
Просмотров 30 тыс.
ASP.NET Core Crash Course - C# App in One Hour
1:00:44
Просмотров 1,5 млн
Premature Optimization
12:39
Просмотров 773 тыс.
Красиво, но телефон жаль
0:32
Просмотров 1,3 млн
iPhone socket cleaning #Fixit
0:30
Просмотров 14 млн
Choose a phone for your mom
0:20
Просмотров 7 млн
iPhone 15 Pro в реальной жизни
24:07
Просмотров 408 тыс.