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💯
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.
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
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?
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); } } }
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();
}
}
}
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.
You're the best thanks for giving us the codes great videos, awesome job man, take care of yourself!
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.
Short sweet and to the point. Just the refresher I needed
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.
thanks! i was confused by the training explanation in my course, and this explained exactly what I was confused by their wording!
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💯
Thanks alot dude, 1st year game developer here,so your videos help alot when my lecturers dont feel like answering my freshman questions anymore
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.
i wish i had known about this channel when i started my degree in IT, Bro you make C# a child's play
i love you so much bro TT
helping me pass my degree
Thanks for the video Bro.
Hey! i know you wont see this message but ive learned C# from you, thank you!
Wonderful, but I rather use "type[ ][ ]" instead of "type[ , ]", so it's easier to make dynamic irregular matrix if i want to :)
Isn't that jagged arrays though?
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
Thanks so much it was really useful for me
Very interesting😀! Thanks
I feel like it should be illegal to watch something this good for free
I think in the for statement: onter loop for lows and inner loop for colums
So easy 🤟🔥 Thanks ❤❤❤
Thanks for help making me understand! Also sweet name
Wow this is pretty complicated! I cant believe this is counted as intermediate. I wonder what advanced topics will be
This is basic. Not intermediate
its introduction beginner level
isnt an array of arrays a jagged array?
Nope
Thank Bro!
For 2D array :
String[,] array_2D = {
{"x0y0" , "x1y0"} , // y0
{"x0y1" , "x1y1"} , // y1
};
// just like a table in coordinate system .
for (int y=0; y
Thanks for the 3D Array example brother
thank you man!
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
bro looks like a certified car geek.(Me also)
Thanks Bro!
you are a big W
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?
Thanks!!
Thx bro
Thank you
saved me once again
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);
}
}
}
UNDERRATED COMMENT
thank you
noice
I’m confused as to why he was able to fit 3 arrays in a 2D array? Looking for a friend
Where is jagged array
bro neither wastes his time nor ours... be like bro
my teacher teach me this in 2 hours
I love you
lesson check
i thinkkk im going o skip this oneeeeeeee
@@perhel2396 i didn't full understand that lesson too
@@perhel2396 lol
it is just list in list but bit syntactically bit weird honestly
A random comment down below.
thnx, but why did u said that this topic is hard, it really isn't