Twitter Course Part 1: Introduction
8:14
Announcement: My Next Course
4:32
4 жыл бұрын
C# Practice 1 Solution
17:21
4 жыл бұрын
C# Practice 1 Prompt
3:02
4 жыл бұрын
C# Tutorial: String Concatenation
3:10
C# Tutorial: For Loop
6:17
4 жыл бұрын
C# Tutorial: Do While Loop
2:44
4 жыл бұрын
C# Tutorial: Function Parameters
7:07
C# Tutorial: Classes and Objects
11:37
C# Tutorial: Static
5:49
4 жыл бұрын
C# Tutorial: Constructors
3:57
4 жыл бұрын
C# Tutorial: Inheritance
7:16
4 жыл бұрын
C# Tutorial: Access Modifiers
4:15
4 жыл бұрын
C# Tutorial: Abstract Classes
8:04
4 жыл бұрын
C# Tutorial: Interfaces
4:54
4 жыл бұрын
C# Tutorial: Structs
3:41
4 жыл бұрын
C# Tutorial: File Input/Output
11:54
4 жыл бұрын
C# Tutorial: Http Client
5:36
4 жыл бұрын
C# Tutorial: JSON Parsing
9:59
4 жыл бұрын
Пікірлер
@abdulrafay2420
@abdulrafay2420 22 күн бұрын
Best explanation ❤
@Ben-bn5ld
@Ben-bn5ld Ай бұрын
Taught more in 7 mins than my lecturer in an hour.
@paulvarshan5419
@paulvarshan5419 Ай бұрын
6:08 6:08 10:57
@ryangoods7949
@ryangoods7949 Ай бұрын
Thanks for this, coming from C++ I was using the second method or the 'old way' which is why I looked for a video about getters and setters
@saktiharahap6006
@saktiharahap6006 2 ай бұрын
can you explain about peek() in stack ?
@Brian-nz6ns
@Brian-nz6ns 3 ай бұрын
You forgot to explain how event handlers work.....
@user-ig2kn8em3p
@user-ig2kn8em3p 3 ай бұрын
Makes sense man
@jp_achkouti8097
@jp_achkouti8097 4 ай бұрын
Thanks for this video (wasted 5mn of my life) Imma go back to chatgpt 4
@BlobifyYT
@BlobifyYT 4 ай бұрын
can someone please explain why accessing fields the first way is bad or wrong?
@paleonard1979
@paleonard1979 4 ай бұрын
Amazing - thank you so much!
@korsbar1978
@korsbar1978 5 ай бұрын
I've watched the whole course. Very well explained. Upload more!
@korsbar1978
@korsbar1978 5 ай бұрын
Very well explained!
@MikeKm-hd1ve
@MikeKm-hd1ve 7 ай бұрын
Thank you for this clear explanation!
@REktSigMa
@REktSigMa 7 ай бұрын
But how do you create the button itself as an object?
@ab_obada5012
@ab_obada5012 8 ай бұрын
Hi, in your C# list, you promised about OOP tutorial and I can't find it.
@umutzehir3027
@umutzehir3027 8 ай бұрын
saol
@ingeneeringch
@ingeneeringch 9 ай бұрын
hello, grate video.I see that the static class main is the reasen that your pro..Object works.I think is that but Who knows.Sorry for my english. Did you have a video for connecting to project or modules, programes?Thanks
@user9522Truth
@user9522Truth 9 ай бұрын
Thank you. Simple and direct solution to get content from API. highly recommanded to beginners.
@saitejapala3208
@saitejapala3208 9 ай бұрын
This is the clean and clarity explanation in all over the youtube
@user-kh5sw6if1p
@user-kh5sw6if1p 10 ай бұрын
pls sorry for asking, pls why do you used for each
@kvelez
@kvelez 10 ай бұрын
using System; using System.Collections.Generic; using System.Linq; namespace ConsoleApp1 { public class Program { static void Main(string[] args) { Dictionary<string, List<string>> person = new() { {"Kevin", new List<string> {"Coffee", "Tea", "PC"}}, {"Josh", new List<string> {"Coffee", "Tea", "PC"}}, {"Mark", new List<string> {"Coffee", "Tea", "PC"}}, }; person.ToList().ForEach(x => { Console.WriteLine($"{x.Key} {string.Join(", ", x.Value)}"); }); } } }
@kvelez
@kvelez 10 ай бұрын
using System; using System.Collections.Generic; using System.Linq; namespace ConsoleApp1 { internal class Program { static void Main(string[] args) { var myBooks = new List<Book>() { new Book() {Title = "C#", Price = 9.4}, new Book() {Title = "C++", Price = 5.4}, }; var books = from book in myBooks orderby book.Price descending select book; books.ToList().ForEach(book => { Console.WriteLine(book.Title); }); } } class Book { public string Title { get; set; } public double Price { get; set; } } }
@kvelez
@kvelez 10 ай бұрын
using System; using System.Collections.Generic; using System.Linq; namespace ConsoleApp1 { internal class Program { static void Main(string[] args) { var myBooks = new List<Book>() { new Book() {Title = "C#", Price = 9.4}, new Book() {Title = "C++", Price = 5.4}, }; var books = from book in myBooks where book.Title == "C#" select book; books.ToList().ForEach(book => { Console.WriteLine(book.Title); }); } } class Book { public string Title { get; set; } public double Price { get; set; } } }
@tilerboston5973
@tilerboston5973 10 ай бұрын
this is the best explanation
@animeboy93
@animeboy93 Жыл бұрын
You are in the same class. You do not need to create a new Program object inside of the Program class.
@fauzizee7765
@fauzizee7765 Жыл бұрын
thank you so much. Finishing my diploma with this
@MsCarbonCopy
@MsCarbonCopy Жыл бұрын
C# do while loops-How to find square of every number...HOW? Any tutorials on how to do this? I can only print numbers one through ten.
@MsCarbonCopy
@MsCarbonCopy Жыл бұрын
C# trying to figure out how to find square of every number for a do while loop.
@user-gm2xt2we6k
@user-gm2xt2we6k Жыл бұрын
Hello, so I am working on making a simulation of a bus, I have managed to make passengers and make it store them, but I have run into problems now when it comes to making functions for the list of objects. Like for instance if I wanted the user to give a parameter of an age let's say 100-80. And then it returns the passengers that match that age. Can't seem to figure out how to do something like that.
@unclecavi1329
@unclecavi1329 Жыл бұрын
you' re genius, why didn't I find you three hours ago. Thanks, mate
@absynthese9259
@absynthese9259 Жыл бұрын
Question, how would you go about printing out only say the second value in the list to the console? Would you do so by index? If so what would be the syntax?
@jigneshvyas3105
@jigneshvyas3105 Жыл бұрын
Thank you very much for simplifying this. Love your videos.
@shayanalam921
@shayanalam921 Жыл бұрын
thanks, bro very useful can you make more videos like these?❤❤
@orioncallaghan2659
@orioncallaghan2659 Жыл бұрын
Thanks for showing what the shorthand is actually doing here.
@givolimyerukim
@givolimyerukim Жыл бұрын
tnx for quick review
@Lededev
@Lededev Жыл бұрын
Extemly fast , simple , and just great keep up the great work I loved the video so much that I wrote this coment.
@NPC_YOUTUBE_USER
@NPC_YOUTUBE_USER Жыл бұрын
do you know how to make propfull for my variables, variables that i have been created before
@amiraBESSAHRAOUI
@amiraBESSAHRAOUI Жыл бұрын
your videos are really amazing and you helpt me understand c# .but this time i didn't really get the point of what constructors are?
@paleonard1979
@paleonard1979 4 ай бұрын
So we can get default values
@lucasferreira8229
@lucasferreira8229 Жыл бұрын
Excellent!!
@simonroyjonesuk
@simonroyjonesuk Жыл бұрын
Perfect. Just what I needed. Thanks
@simonroyjonesuk
@simonroyjonesuk Жыл бұрын
Perfect and straightforward. Will watch more. Thanks
@TauroChuck
@TauroChuck Жыл бұрын
Thank you
@simonroyjonesuk
@simonroyjonesuk Жыл бұрын
Really helpful thanks. Easy to understand and quick.
@thereplicant6027
@thereplicant6027 Жыл бұрын
this channel is a hidden gem, i love the no bullshit approach just a short well explained video
@VinciWare
@VinciWare Жыл бұрын
Wonderful tutorial! I'm creating a bounty system and I had originally planned to create a list of array's in a similar fashion. I wasn't able to remove the elements in the array which is what led me here. So thank you for fixing my problem!
@noemil6036
@noemil6036 Жыл бұрын
Hi Ian, At first I thought yeah, let's not bother with the spelling of something, but as the video went on it really started distracting me... Heck, it was painful! :I the explanation was v helpful, so thank you for sharing. All the best
@randlmorales4890
@randlmorales4890 Жыл бұрын
Question: why is there a need to use the custom EventArgs when you can simply utilize the class where the EventHandler belongs? To be specific in this example: why create a new MyCustomArguments class when you can instead add the Name property in Button and then on the anonymous function just call s.Name instead of args.Name?
@joeman123964
@joeman123964 Жыл бұрын
you did a crap job fyi. you just showed how to declare a dictionary. you should've set other objects aside that were dependant on the keys like in a video game. shield key id 1 sword key id 2 so if key 2 was chosen, then the object sword would be created. etc
@dwried
@dwried Жыл бұрын
Now the real question for people to figure out on their own is when they'd be useful to create.
@s0nnyv123
@s0nnyv123 Жыл бұрын
Fairly straight forward indeed. Nice and simple explanation with example. Thank you!