Debugging C# Code in Visual Studio | Mosh

Поділитися
Вставка

КОМЕНТАРІ • 74

  • @michaelmiller7892
    @michaelmiller7892 6 років тому +24

    Some of the most in-depth, easy-to-digest information on the subject I've seen. Thanks!

  • @yusef2610
    @yusef2610 5 років тому +4

    I always get happy when I search for C# guides and tips and Mosh shows up in the results. Big up!

  • @lifeissnowpiece4505
    @lifeissnowpiece4505 2 роки тому

    Sir you easily identified problems in program. but some peoples only made for subscribers and views . but sir you really learn from heart.

  • @armenbakir112
    @armenbakir112 4 роки тому +1

    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 роки тому +4

    Thank you Mosh for explaining in such a clear language, step by step all the small details.

  • @supriyanaiya
    @supriyanaiya 2 роки тому +1

    Best debugging video I've ever seen!
    Thank you, Mosh 😇

  • @arrensantos4869
    @arrensantos4869 4 роки тому +5

    Awesome Debugging and Defensive programming tutorial. Would like to request that you create a tutorial for error handling, thank you!

  • @robertstimmel1100
    @robertstimmel1100 3 роки тому +4

    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.

  • @vladimirvereschakov2931
    @vladimirvereschakov2931 2 місяці тому

    makes me wanna be a programmer even more, and still the best course

  • @zackydev
    @zackydev 4 роки тому +7

    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?

  • @XXIcenturyblood
    @XXIcenturyblood Рік тому +1

    10:32 - Writing reliable code
    19:53 - Defensive programming
    27:38 - Call stack
    29:29 - Locals and autos

  • @GoldenAngel3341
    @GoldenAngel3341 10 місяців тому

    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

  • @kingtyphoon
    @kingtyphoon Рік тому

    Hi, this is a awesome tutorial! My first impression is that the syntax of C# looks similar that of JavaScript and PHP.

  • @godrises8100
    @godrises8100 Рік тому +3

    Geeez!!! Learned more from the constant ads

  • @Seanog1231
    @Seanog1231 7 років тому

    Much appreciated was putting print statements all over the place before.

  • @achalpandit4038
    @achalpandit4038 Рік тому +1

    Awesome video

  • @dosaimre
    @dosaimre 3 роки тому

    excellent explanation, as ALWAYS from Mosh! Thanks.

  • @brendanbassett8584
    @brendanbassett8584 6 років тому +5

    A concise and informative video. Thank you so much!

  • @japhethjay4880
    @japhethjay4880 9 років тому +1

    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 9 років тому

      Thanks though, you have it installed, I will check on the syntax highlighting

  • @jacobp4330
    @jacobp4330 9 років тому +5

    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!

  • @krishj8011
    @krishj8011 6 місяців тому

    Excellent Tutorial...

  • @ultron7461
    @ultron7461 4 роки тому

    Very good explanation sir. Thank you.

  • @MrSB007
    @MrSB007 3 роки тому

    Very helpful! Thank you :)

  • @wgsl2005
    @wgsl2005 9 років тому +2

    great tutorial!

    • @deadaccount3070
      @deadaccount3070 6 років тому

      My classmate in 6th grade has the same full name as yours.

  • @abhayraghuvanshi5199
    @abhayraghuvanshi5199 7 років тому

    Your tutorial are awesome !! I have completed c# console basics now what should i do next .

  • @veerabhadrarao258
    @veerabhadrarao258 3 роки тому

    Clear cut explanation

  • @Young_as_Lenin
    @Young_as_Lenin 6 років тому +1

    thx, you are talanted teacher

  • @timothywoldt8649
    @timothywoldt8649 5 років тому

    Good stuff! Thanks :)

  • @dayanamarinaavilacastellan3532
    @dayanamarinaavilacastellan3532 3 роки тому +3

    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;
    }
    }
    }

  • @keithkatane4854
    @keithkatane4854 3 роки тому

    Thank you, bro.

  • @saifalradhi673
    @saifalradhi673 9 років тому

    Great Job Mosh , Waiting for The Entity Framework course.
    I'm curious when u will upload it? :)

    • @saifalradhi673
      @saifalradhi673 9 років тому

      +Programming with Mosh That is fine. at least I can use my effort to prepare for my thesis defense :D

  • @paulcurry8383
    @paulcurry8383 2 роки тому

    Your visual studio looks different than mine. Do you have any visual mods/settings you’d recommend? Thanks!

  • @shallonstrange
    @shallonstrange 2 роки тому

    #Mosh 🤩🙌

  • @elitetechacademy
    @elitetechacademy 3 місяці тому

    thank you

  • @EgyptUnderGroundArmy
    @EgyptUnderGroundArmy 9 років тому

    first comment :P
    I'm curious where do you come from? your name sounds middle eastern

    • @robertanic7799
      @robertanic7799 9 років тому

      +EgyptUnderGroundArmy Second :) Great tutorial.

  • @nazrussel
    @nazrussel 7 років тому

    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.

  • @bayoakins1004
    @bayoakins1004 5 років тому

    How do I get help with School assignments? I am a registered subscriber on your C# tutorial website.

  • @jakubhronik8637
    @jakubhronik8637 4 роки тому

    Instead of checking for count

  • @abdullahAboelkhair
    @abdullahAboelkhair 3 роки тому

    Thank You

  • @ThePasojim
    @ThePasojim 4 роки тому

    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!

  • @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?

  • @shivan2418
    @shivan2418 5 років тому

    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 4 роки тому

    Hi, is there reason for not include auto caption or subtitle?

  • @bernardchisumo4054
    @bernardchisumo4054 9 років тому

    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 3 роки тому

    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?

  • @shimaxu
    @shimaxu 9 років тому

    Can you upload the exercise file, so that it will be easier to follow along with, Thanks

    • @robertanic7799
      @robertanic7799 9 років тому

      +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?

  • @semikolon4229
    @semikolon4229 8 років тому

    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).

  • @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?

  • @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

  • @mohammedsadik3974
    @mohammedsadik3974 6 років тому

    Thanks too much

  • @billythesunbeltsamurainapi3670
    @billythesunbeltsamurainapi3670 7 років тому

    what about debugging in c

  • @DIEZ919191
    @DIEZ919191 Рік тому

    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 8 років тому

    can u make videos on ethnic haking

  • @mc343cortana5
    @mc343cortana5 7 років тому

    deploy=eset

  • @amsun6201
    @amsun6201 7 років тому

    Your lesson don't follow any rhythm, jumping from scenario to scenario just confusing beginners.

  • @roadrageman1210
    @roadrageman1210 Рік тому +4

    CONSOLE APPS ARE USELESS!

    • @teddylu6295
      @teddylu6295 9 місяців тому

      No, they’re not. Stay away from me with your f* GUI‘s which are slow, cumbersome and inefficient.

    • @Mushroomissa
      @Mushroomissa 4 дні тому

      Sure but isn’t this just the easiest way to teach you how to apply the written code?

  • @Mohsinkhan-mv9hi
    @Mohsinkhan-mv9hi 5 місяців тому

    Sir you easily identified problems in program. but some peoples only made for subscribers and views . but sir you really learn from heart.

  • @Mohsinkhan-mv9hi
    @Mohsinkhan-mv9hi 5 місяців тому

    Some of the most in-depth, easy-to-digest information on the subject I've seen. Thanks!

  • @Mohsinkhan-mv9hi
    @Mohsinkhan-mv9hi 5 місяців тому

    Thank you Mosh for explaining in such a clear language, step by step all the small details.

  • @Mohsinkhan-mv9hi
    @Mohsinkhan-mv9hi 5 місяців тому

    Geeez!!! Learned more from the constant ads