Learn C# for beginners: 34 - Searching an Array Using Loops

Поділитися
Вставка
  • Опубліковано 13 бер 2015
  • If you enjoyed this video please comment below and give me a thumbs up! It goes a long way.
    If you want to keep watching these videos make sure to subscribe!
    You can contact me at:
    Twitter: / jdprogramming
    For business Inquires please email at: JDProgramming@Outlook.com

КОМЕНТАРІ • 8

  • @user-hy1zh5zj5p
    @user-hy1zh5zj5p 3 роки тому

    so helpful, thanks a lot

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

    tnks bro

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

    Wow nice explanation

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

    thank you

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

    8:04 thank you for pointing that out! I was struck on that for awhile. I just want one not found, not hundreds. So a boolean solved the problem. It is awkward because I have to write whole new loop just for this little problem. Is there other way to do it?

  • @benefactor4393
    @benefactor4393 7 років тому +1

    In for loop 'i = 0; i++' and you compare in this loop (studentName == student[i] ) Why student[i] does not equal students[0, 1, 2, 3, 4] ? seeing that declare i = 0 ?

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

    do you have an example for this in while loop version?

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

    Teoth, you are confusing index of array with content of array. i(index) can be 0,1,2, or 3. Student[0] = "Bob". Student[1]="Ted"...