C# multidimensional arrays ⬜

  Рет қаралды 52,292

Bro Code

Bro Code

Күн бұрын

Пікірлер: 61
@BroCodez
@BroCodez 3 жыл бұрын
using System; namespace MyFirstProgram { class Program { static void Main(string[] args) { String[,] parkingLot = { { "Mustang", "F-150", "Explorer" }, { "Corvette", "Camaro", "Silverado" }, { "Corolla", "Camry", "Rav4" } }; parkingLot[0, 2] = "Fusion"; parkingLot[2, 0] = "Tacoma"; /* foreach(String car in parkingLot) { Console.WriteLine(car); } */ for(int i = 0; i < parkingLot.GetLength(0); i++) { for (int j = 0; j < parkingLot.GetLength(1); j++) { Console.Write(parkingLot[i, j] + " "); } Console.WriteLine(); } Console.ReadKey(); } } }
@magnesium3273
@magnesium3273 2 жыл бұрын
Well that don't work well in a youtube comment section. Do you have a video of the best c# functions cause I can't find one.
@lolboqoboqo
@lolboqoboqo Ай бұрын
You're the best thanks for giving us the codes great videos, awesome job man, take care of yourself!
@bakastep3107
@bakastep3107 10 ай бұрын
I can't thank you enough for making this video. This might get buried in the comments, but I always find myself coming back to your videos for help.
@crazydave6787
@crazydave6787 Жыл бұрын
Short sweet and to the point. Just the refresher I needed
@expansivegymnast1020
@expansivegymnast1020 Жыл бұрын
Thanks! I like the short videos like this about smaller subjects. Sometimes I just need a refresher and not an hour long thing about it.
@e.dnorth
@e.dnorth Жыл бұрын
thanks! i was confused by the training explanation in my course, and this explained exactly what I was confused by their wording!
@LincyMcGabby
@LincyMcGabby 8 ай бұрын
Had a tough time trying to understand multidimensional arrays in class, but I easily understood them straight away when I watched this video. You're the best Bro💯
@ninjanick5769
@ninjanick5769 4 ай бұрын
Thanks alot dude, 1st year game developer here,so your videos help alot when my lecturers dont feel like answering my freshman questions anymore
@krevin543
@krevin543 6 ай бұрын
This is a great video! In my SoloLearn course I was confused by their introduction of {2,3} bracketed values into the multidimensional array exercise and how that effected the rows and columns in the index. Prior they had been using [8,8] code to set the rows and columns.
@spartanranger
@spartanranger 3 жыл бұрын
Thanks for the video Bro.
@fushitensho7840
@fushitensho7840 2 жыл бұрын
Wonderful, but I rather use "type[ ][ ]" instead of "type[ , ]", so it's easier to make dynamic irregular matrix if i want to :)
@hlongwane.luyanda
@hlongwane.luyanda 5 ай бұрын
Isn't that jagged arrays though?
@jay-leeshih258
@jay-leeshih258 Жыл бұрын
i love you so much bro TT helping me pass my degree
@definitelynotchris4776
@definitelynotchris4776 3 ай бұрын
I feel like it should be illegal to watch something this good for free
@moeketsiisaac4200
@moeketsiisaac4200 27 күн бұрын
i wish i had known about this channel when i started my degree in IT, Bro you make C# a child's play
@HishamButt-ue5rc
@HishamButt-ue5rc 5 ай бұрын
Hey! i know you wont see this message but ive learned C# from you, thank you!
@lateamskul
@lateamskul Жыл бұрын
Very interesting😀! Thanks
@Alexhusen4607
@Alexhusen4607 8 ай бұрын
Thanks so much it was really useful for me
@MS-pq4il
@MS-pq4il Жыл бұрын
So easy 🤟🔥 Thanks ❤❤❤
@maxwong1768
@maxwong1768 2 жыл бұрын
For 2D array : String[,] array_2D = { {"x0y0" , "x1y0"} , // y0 {"x0y1" , "x1y1"} , // y1 }; // just like a table in coordinate system . for (int y=0; y
@dileepsaisharan9107
@dileepsaisharan9107 Жыл бұрын
Thanks for the 3D Array example brother
@BrandonFerrentino
@BrandonFerrentino 2 жыл бұрын
isnt an array of arrays a jagged array?
@anthonysteinerv
@anthonysteinerv 2 жыл бұрын
Nope
@anatolii2202
@anatolii2202 7 ай бұрын
wow that`s a long way actually, week number 2 and lesson number 30 brooo. thank you for help, i start to understand something now
@duck7445
@duck7445 3 ай бұрын
Wow this is pretty complicated! I cant believe this is counted as intermediate. I wonder what advanced topics will be
@davor1599
@davor1599 3 ай бұрын
This is basic. Not intermediate
@Michael_the_believer
@Michael_the_believer 2 ай бұрын
its introduction beginner level
@tuckbuckk5465
@tuckbuckk5465 2 жыл бұрын
Thanks for help making me understand! Also sweet name
3 жыл бұрын
Thank Bro!
@asrbekmirsoatov7664
@asrbekmirsoatov7664 Жыл бұрын
I think in the for statement: onter loop for lows and inner loop for colums
@rishitkumar7076
@rishitkumar7076 Жыл бұрын
bro looks like a certified car geek.(Me also)
@user-gk9fn8pu1f
@user-gk9fn8pu1f Жыл бұрын
thank you man!
@fornowhere7264
@fornowhere7264 5 ай бұрын
i know this is 3 years old but I need to be adding new values onto the 2 dimensional array and I need to add whole 1D arrays to the rows of the 2D array and idk howwwww
@GonConDon
@GonConDon 9 ай бұрын
Thanks!!
3 жыл бұрын
Thanks Bro!
@viniciuslima1064
@viniciuslima1064 2 ай бұрын
Thx bro
@azazelfreefire
@azazelfreefire Жыл бұрын
using System; class Program { static void Main() { const string message = "I just love uhh bro"; const int repetitionCount = 100000000; for (int i = 0; i < repetitionCount; i++) { Console.WriteLine(message); } } }
@hemacod3203
@hemacod3203 3 күн бұрын
UNDERRATED COMMENT
@איתןישייב
@איתןישייב 8 ай бұрын
you are a big W
@purpliciousarmy
@purpliciousarmy 2 жыл бұрын
Thank you
@Miki-gd4rq
@Miki-gd4rq Жыл бұрын
thank you
@sethverhaert112
@sethverhaert112 Жыл бұрын
saved me once again
@budderrar5751
@budderrar5751 2 жыл бұрын
noice
@kimiannalapo1092
@kimiannalapo1092 Жыл бұрын
Why the output declared the 3 elements of 0,1, and 2 array? He just used 0 and 1 array in his for loop condition, but he got those 3 elements of 0,1,2 array instead of 0,1 array only.. I'm confused about it.. Anyone can help me to understand that last part of the video?
@CartoonzWorld-qk6kf
@CartoonzWorld-qk6kf Жыл бұрын
Where is jagged array
@vaderfloyd6926
@vaderfloyd6926 Жыл бұрын
I’m confused as to why he was able to fit 3 arrays in a 2D array? Looking for a friend
@SimplyZaidy
@SimplyZaidy 3 ай бұрын
bro neither wastes his time nor ours... be like bro
@whitedinamo
@whitedinamo 2 жыл бұрын
lesson check
@ShahFahad-n2s
@ShahFahad-n2s 2 ай бұрын
my teacher teach me this in 2 hours
@jaerug.libanan8620
@jaerug.libanan8620 Жыл бұрын
I love you
@justsomeguy4580
@justsomeguy4580 3 жыл бұрын
i thinkkk im going o skip this oneeeeeeee
@furkanaltun2116
@furkanaltun2116 3 жыл бұрын
@@perhel2396 i didn't full understand that lesson too
@cameronthomas3398
@cameronthomas3398 2 жыл бұрын
@@perhel2396 lol
@Rahulsingh-theraha
@Rahulsingh-theraha 2 жыл бұрын
it is just list in list but bit syntactically bit weird honestly
@manameisjeffie656
@manameisjeffie656 2 жыл бұрын
thnx, but why did u said that this topic is hard, it really isn't
@the_dude_josh
@the_dude_josh Жыл бұрын
A random comment down below.
C# classes 📦
4:54
Bro Code
Рет қаралды 89 М.
C 2D arrays ⬜
7:33
Bro Code
Рет қаралды 103 М.
Каха и дочка
00:28
К-Media
Рет қаралды 3,4 МЛН
Гениальное изобретение из обычного стаканчика!
00:31
Лютая физика | Олимпиадная физика
Рет қаралды 4,8 МЛН
How to Program in C# - Arrays (E05)
17:01
Brackeys
Рет қаралды 451 М.
C++ multidimensional arrays explained ⬜
7:41
Bro Code
Рет қаралды 18 М.
C# Lists 📃
6:46
Bro Code
Рет қаралды 113 М.
C# Tutorial for Beginners 18 : Jagged Arrays
14:53
JackedProgrammer
Рет қаралды 2,5 М.
Java 2D arrays 🚚
8:06
Bro Code
Рет қаралды 197 М.
C# arrays 🚗
5:57
Bro Code
Рет қаралды 69 М.
you will never ask about pointers again after watching this video
8:03
The Absolute Best Intro to Monads For Software Engineers
15:12
Studying With Alex
Рет қаралды 679 М.
Каха и дочка
00:28
К-Media
Рет қаралды 3,4 МЛН