Тёмный
No video :(

C# Full Course - Learn C# 10 and .NET 6 in 7 hours 

tutorialsEU
Подписаться 98 тыс.
Просмотров 495 тыс.
50% 1

Опубликовано:

 

4 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 276   
@tutorialsEU
@tutorialsEU 2 года назад
🚀C# Progress Academy - Skyrocket your C# skills with the ultimate course bundle: academy.tutorials.eu/p/csharp-progress-academy
@akinboyeyusuff215
@akinboyeyusuff215 2 года назад
Great Tutorial. I went through the video from the first minute (Welcome to this 7-hour C# course!) to the last minute (Thank you for watching!). The first long tutorial I will complete without skipping. Thank you for this video. I hope we get the 1,500 likes.
@tutorialsEU
@tutorialsEU 2 года назад
That's awesome!
@RealSaudiExplorer
@RealSaudiExplorer Год назад
I contributed in decrementing your likes.
@silentwindstudio
@silentwindstudio 2 года назад
This course is awesome, clean and concise. The best part is that they actually tell you WHY some stuff are useful instead of just saying that something it is useful, but with no solid reasons.
@hamzachohan6806
@hamzachohan6806 Год назад
I am returning to coding after a long gap. To be honest I didnt found any other tutorial this much helpful. Starting from a noob. Thumbs Up 👍
@vikramnoel1239
@vikramnoel1239 2 года назад
Great Tutorial, But could you please also make a series on C# Advanced topics like LINQ, LAMBDA, Generics, ... etc.
@KenlieroGames
@KenlieroGames Год назад
This tutorial is very good. I used to write code quite a lot around 20 years ago with Pascal and C++, but just checking through this video, it all comes back to me. I am also more curious about C# now. it seems even better for me, than C++
@tutorialsEU
@tutorialsEU Год назад
Glad it was helpful!
@TheRealJohnMadden
@TheRealJohnMadden Год назад
Amazing tutorial! I love that it's up-to-date with C# 10 and .Net6 because a lot of the courses I find seem to be C#9 and things have changed a bit so it makes it a bit harder to follow. I can't wait to see the new course you guys make up since we mashed the like goal!!
@Lanthiren
@Lanthiren Год назад
Was this tutorial good?
@sk21241984
@sk21241984 Год назад
This course is brilliant for beginners. I checked few course at plural sight and did not get anything. At the end, I looked at RU-vid and found this amazing course free of charge.
@TonyTigerTonyTiger
@TonyTigerTonyTiger 9 месяцев назад
4:10:05 That is the old and inferior - very old and very inferior - way of doing it. They introduced optional parameters I think more than a decade ago. Even with what you have so far on screen, the better way to do it is: public Human(string firstName, string lastName, string eyeColor, int age = 0) Now age is an optional parameter. If the caller passes an argument for age (say, 32), the value they passed is used: if they call the constructor without giving an argument for age, then the default value of 0 (specified in the method signature using ... = 0) is used. The 1 parameterized constructor with an optional parameter does the job of the 2 parameterized constuctors you have. And now you are making it worse. You are asking the developer to create even more paramterized constructors, in case another parameter is not given a value on instantiation. So your developer will have 5 or 6 parameterized constructors instead of just 1. Worse still, if you want to take all possibilities into consideration, you would have to create a slew of pamaterized constructors, such as: 1) Caller passes only firstName 2) Caller passes only lastName 3) Caller passes only eyeColor 4) Caller passes only age 5 ) Caller passes only firstName and lastName 6 ) Caller passes only firstName and eyeColor 7 ) Caller passes only firstName and age 8 ) Caller passes only lastName and eyeColor 9 ) Caller passes only lastName and age 10) Caller passes only eyeColor and age 11) Caller passes firstName, lastName, and eyeColor 12) Caller passes firstName, lastName, and age 13) Caller passes lastName, eyeColor, and age 14) Caller passes firstName, lastName, eyeColor, and age But if you use optional parameters for all 4 (firstName, lastName, eyeColor, and age), then a single constructor would handle all of the above cases. And worse again, if you add one more field, such as gender, you are going to have to add more parameterized constructors. Finally, you have a lot of duplicated code in your many parameterized constructors. For example, multiple parameterized constructors will have code to set the value for firstName and lastName. I mean, we know there is duplicated code because you copy/pasted one constructor to make another one, doing that several times.
@RealStuntPanda
@RealStuntPanda Год назад
I started programming in C# when it first came out but haven't done so in over a decade (switched to Ruby). Visual Studio has changed SO MUCH! This was a great refresher so thank you.
@erythreas34
@erythreas34 5 месяцев назад
For the swap at 1:14:00 ~ you can also do a += b; b = a - b; a -= b; Console.Read is just waiting for input. It is not "reading" what was before.
@Martingrgv
@Martingrgv Год назад
That's literally all you need for start, amazing tutorial! I respect the given time and efforts. Even, I still learned in details a couple of things that I didn't know.
@linearfoldsmom
@linearfoldsmom 2 месяца назад
notes for myself: Built in Value Types: 9:36 Weird Stuff Missing and Visual Studio Setup: 19:53 String Variables: 26:44 Joining Strings: 29:03 Whole Numbers: 30:20 Floats: 30:42 Fixing New Template: 32:52 SO MUCH IMPORTANT STUFF THAT I FORGOT TO SAVE AAAAAA The rest is just in the chapters but ugh Custom Exceptions: 4:32:58
@olatunjifelix2102
@olatunjifelix2102 2 года назад
Please .net core beginer to advance would be very much appreciated. Thanks for the effort
@blessingclaudio4777
@blessingclaudio4777 Год назад
I must say you are a great teacher by far better than reading a published book!
@tutorialsEU
@tutorialsEU Год назад
thanks!
@steveos5112
@steveos5112 Год назад
This is the best tutorial. You give small bits and then show the results, then move onto the next. The pace was perfect and especially your teaching method!
@martapfahl940
@martapfahl940 Год назад
Really interesting. I am a Junior React Typescript Developer and I am super interested in C#, it is insane how much of these programming languages is done the same way. I always thought the this keyword is JS specific. Once you know one programming language it is super easy to pick up on another one 😊
@jamalabdulnaaser1026
@jamalabdulnaaser1026 Год назад
that's cuz Typescript and C# were designed by the same person. Good catch bro
@martapfahl940
@martapfahl940 Год назад
@@jamalabdulnaaser1026 Well, then Microsoft seems to employ an awesome person :)
@owdoogames
@owdoogames Год назад
You might want to look at the chapters... "Changes in NET 6" seems to be almost an hour long, but that part only lasts for a few minutes and runs into an introductory tutorial about types, variables, scope, etc. It could be confusing to beginners.
@JakeAnthrax420
@JakeAnthrax420 Год назад
Thanks Man I Knew C# But When i watched I Got more information about it
@Capt_Lucy
@Capt_Lucy Год назад
Took me a bit to figure out why ArrayList wasn't working for me: I had named my new project "ArrayList" which by default in Visual Studio creates a namespace named "ArrayList" and apparently having a namespace name the same as the class you're calling is not a good idea. I just thought I'd try to help any other new people like me making the same mistake because I couldn't find this information by searching for answers.
@3SA627
@3SA627 Год назад
1:29:18 so good explained 👍👍 I saw a lot of programming courses without any explanation....just switching phrases i thought...it could be so much easier like you explained it..loved it
@TonyTigerTonyTiger
@TonyTigerTonyTiger 9 месяцев назад
Now look at line 8. It has ... "string[] args". args is short for arguments. So the main method has a parameter named arguments?!?! Therefore, any arguments passed to that method are received into the parameter arguments. I consider that a misnomer: the wrong name is used. But it is convention. It would be better if the convention was to use ... "string[] parms".
@clangff2267
@clangff2267 10 месяцев назад
1st task I've done like this : public class Task { public static void Main() // The task is to create a program to swap two numbers. { int a = 1; int b = 2; int c = 3 - a; a = c; int d = b - 1; b = d; System.Console.WriteLine("a is = " + c + ", " + "b is = " + d); } }
@TonyTigerTonyTiger
@TonyTigerTonyTiger 9 месяцев назад
That's not swapping the values, though. You get the correct result, but are not implementing the requested task. If the code is change to ... int b = 7, then your code no longer works. But an actual swap method would work.
@mohamedadhil8358
@mohamedadhil8358 2 года назад
Need c# best practices for beginners. Have reached 1.5k likes within 1 month. Thanks for this awesome video. Really appreciate your help
@tutorialsEU
@tutorialsEU 2 года назад
We are working on it :)
@kopilkaiser8991
@kopilkaiser8991 2 года назад
Lots of love from me. I have understood a lot of the concepts more clearly watching your video. Thanks a lot! You are an exceptional instructor.❤⭐️⭐️⭐️⭐️⭐️⭐️
@rgprosucctions1704
@rgprosucctions1704 Год назад
Seven semesters of computer science and I can now finally understand all of this video
@YamellMateo
@YamellMateo Год назад
Great course! Another solution for the 1st exercise is that you can just do (a, b) = (b, a);
@markoviitanen2671
@markoviitanen2671 Год назад
This author has a very very good talent in explaining things very clearly. Subbed and learning :)
@zoro9878
@zoro9878 2 года назад
Thank you so much. This is a really well detailed tutorial for C#
@ihsannuruliman4005
@ihsannuruliman4005 Год назад
BroCode! Can you please make a tutorial on Windows Presentation Foundation? Just as Java has a GUI tutorial, I would also really love to see a GUI tutorial for C#.
@user-rc3mj9vc4d
@user-rc3mj9vc4d Год назад
this is the first studing video i have learned that has 7hours,oh,that's cool!
@KrishnaKarunamrutham
@KrishnaKarunamrutham Год назад
I think, thank you is a very small word. But should say a big thank you for making c# so easy for us to learn.
@user-nn4js8rg7i
@user-nn4js8rg7i Год назад
thank you very much. simple, interisting and understandable
@natiisrael4822
@natiisrael4822 Год назад
so cool learned everything i need to know! im a professional c# sin your software engineer
@024kanhaiyakumar6
@024kanhaiyakumar6 Год назад
The way of teaching is amezing ❤️ Love from India 🇮🇳🇮🇳🇮🇳
@SH-cy6lh
@SH-cy6lh 11 месяцев назад
Could you please make videos about sample projects A-Z including everything. Big help.Please
@ilyasschafia4153
@ilyasschafia4153 Год назад
Thank you so much for this one, I hope you can do intermediate or advanced course for c#
@lee1davis1
@lee1davis1 Год назад
I've watched a lot of videos on c#, and glad you always tress the important points. Thanks
@faris.abuali
@faris.abuali Год назад
Thank you so much!
@tutorialsEU
@tutorialsEU Год назад
No worries!
@amirdan2327
@amirdan2327 Год назад
great video, the only thing bothering me is that you say there will be a section about inheritance and there wasnt any
@TheDMTLover
@TheDMTLover Год назад
So far, at 1h34 into the course, I don't understand why the console.Read() is required. The dude before the 2nd guy never used Read() and got the same results.
@SayanMondal-yb4hs
@SayanMondal-yb4hs Год назад
It's there so that the program doesn't end right away after it's done
@SunkenMax
@SunkenMax Год назад
Console is a class name that has a static function in it, we call that function so that we can capture/take an input from the user, in this case the programmer, in a nutshell that is what that function Read() does it comes with another version Readline() which expects an entire line from user keyboard instead of just one key. In this scenario we want to print something on the console and the console does that and shuts off as soon as it's done displaying, it does not wait for the user/programmer to even see what is displayed. To make the console wait until and unless we give it a key we use Console.Read().
@TJ-jw7jy
@TJ-jw7jy Год назад
Thank you for making this fantastic course on C#!
@UmairAhmad-gx7yi
@UmairAhmad-gx7yi 2 года назад
Greatly explaining really appreciated 👍
@tutorialsEU
@tutorialsEU 2 года назад
Nice! :)
@WorstDeveloper
@WorstDeveloper Год назад
I read that you shouldn't use ArrayList. You should use List instead. Is that correct? ArrayList is apparently much worse.
@TonyTigerTonyTiger
@TonyTigerTonyTiger 9 месяцев назад
Yes, that is correct: don't use ArrayList if there is an alternative. I am over 5 hours into the course and I have not seen it yet, but the problem with ArrayList is that is usually uses boxing and unboxing, which can harm performance. For example, if the ArrayList is for integers, then every time you store a new integer in the ArrayList it first has to be boxed, which requires (a) creating a location in memory on the heap to store the value, (b) creating a reference that points to that location in memory on the heap, and (c) writing the value to the location on the heap. All of that requires extra overhead. Great, but now to read the values in the ArrayList requires unboxing, which involves reading the reference to get the memory location on the heap, then reading that integer value on the heap and assigning it to a local variable. That also requires extra overhead.
@TonyTigerTonyTiger
@TonyTigerTonyTiger 9 месяцев назад
4:30:16 There is an error coming up. He says that private methods can be called from the Box class itself or from classes that inherit from the Box class: that is incorrect. Private methods can only be called from the class they are defined in, not from derived classes. The access modifier that would allow a (non-static) method in the Box class to be called from the Box class itself or from classes that inherit from the Box class is ... protected. I thought maybe he just messed up once, and wasn't going to mention it. But a minute or two after he says it wrong the first time, he says it wrong again.
@andrzejsiebieranski7239
@andrzejsiebieranski7239 Год назад
There are fantastic courses on this channel. I learned a lot from them.
@yopi_mdd
@yopi_mdd 2 года назад
Hi, I'm Yopi from Indonesia, can you add subtitles to this video, I'm not very good at English.
@gangitlasuribabu1909
@gangitlasuribabu1909 2 года назад
really Thanks for the free course , its really helpful...
@tutorialsEU
@tutorialsEU 2 года назад
sure thing! :)
@The_Superior_Self
@The_Superior_Self Год назад
This is gonna take a couple of days just to get through. But its better then downloading some random OBD II reader programm from the app store that may cost me 2 Euros. Its better to just get on with learning this. But I do get the feeling this is gonna be like learning to talk all over.
@stagnator459
@stagnator459 Год назад
Thx for this, it helped me a bunch, I followed a couple of other tutorials, but this one helped clear all the little things I was confused about.
@sanjeev3591
@sanjeev3591 2 года назад
Great tutorial bro!!! coming from java...
@tutorialsEU
@tutorialsEU 2 года назад
awesome to have you here
@TonyTigerTonyTiger
@TonyTigerTonyTiger 9 месяцев назад
I am now 4 hours 30 minutes in and I still have not seen anything from C# 10. What I see is old, and I believe all of it would work back in C#6. There are no features that were introduced in C# 10, or C# 9, or C# 8, etc. I mention this because I figured that by now they would have shown simple updates to the basic things they have covered. For example, they covered variables, but not the newer feature of nullable value types; they covered outputting strings, but not the newer feature of string interpolation; etc. These features have been available for the past several versions of C# and are useful at the beginning level (these are not "advanced" topics such as async and await).
@MysticGhostCode
@MysticGhostCode Год назад
Great tutorial! but I want to know more about OOP in c#. please can you make more video.
@sebdoe
@sebdoe 2 года назад
Great course, thanks!
@loukhai
@loukhai Год назад
♥️ have you a video explain ASP.Net 6 Core MVC?
@jayveebelano9041
@jayveebelano9041 Год назад
Amazing one of the best tutorial vid here in YT
@user-tp6kf7zv3y
@user-tp6kf7zv3y 7 месяцев назад
You are a great instructor :)
@Gamersunite2506
@Gamersunite2506 Год назад
Honestly? So far, this is one of the best beginner tutorials for C# that I've seen. Very well paced and explains things well without rushing over things. Right now, I'm in the process of trying to go from a beginner to coding to being familar with Blazor Webassembly for a job. Finished a course on html, and that was fairly easy, but I've been having difficulty with C#, which this video has been very useful for me for. I'm thinking that after this, I'm going to try and learn how databases tie in with Visual Studio and C# and then try and learn razor pages in order to start getting familar with Blazor WebAssembly. Do you have any suggestions on what I should focus on after this video or any resources or even another video of yours you could direct me to?
@siman211
@siman211 7 месяцев назад
Hey i want to learn c# as a beginner after this tutorial what should i take can you recommend
@user-yo1nt2en1f
@user-yo1nt2en1f 8 месяцев назад
6:49 10:53 15:45 18:39 29:30
@gauravkumar2609
@gauravkumar2609 Год назад
Great Video, Thanks for sharing, please make one full video of Blazor WSAM.
@renatzkigab2616
@renatzkigab2616 Год назад
Could you make a tutorial of this in a playlist that covers all the fundamentals of this language? Thanks in advance.
@tanneryoungblood2848
@tanneryoungblood2848 2 года назад
DO A TUTORIAL ON 2D TEXT SIMULATORS (Music Maker, Business Manager, life simulator) There is NOTHING to help with this
@Zeudern
@Zeudern Год назад
Simply amazing for any beginner to C#!!
@FunnyAnimClip
@FunnyAnimClip 8 месяцев назад
Thank you for this great ideea!
@karimxlife3363
@karimxlife3363 Год назад
Thanks! You are the real hero
@manoelfelipe2977
@manoelfelipe2977 Год назад
What an incredible course! I've watched everything till the end. Thank you very much for putting so much effort into this. Cheers from Brazil.
@tutorialsEU
@tutorialsEU Год назад
Glad you enjoyed it!
@mirzazohaibbaig1905
@mirzazohaibbaig1905 Год назад
06:15:00 getting errors Argument 1: cannot convert from 'System.Collections.Generic.List' to 'string' partyFriends.Add(currentFriend); and list.Remove(currentFriend); and Cannot implicitly convert type 'string' to 'System.Collections.Generic.List' for return shortestName;
@kingericsr
@kingericsr Год назад
Good tutorial. Few recommendations. Break the video up into separate videos (more revenue for you, right?). Also, add Interfaces to the agenda :)
@akashmadanu3994
@akashmadanu3994 2 года назад
Thanks a lot!!
@revanthshalon5626
@revanthshalon5626 2 года назад
Can you do an intermediate to Advanced C# course ?
@tutorialsEU
@tutorialsEU 2 года назад
What topics do you think of?
@emeraldworldewteam912
@emeraldworldewteam912 2 года назад
@@tutorialsEU like oop,inheritance,constructers I think they are called like this
@freshrafyz6607
@freshrafyz6607 2 года назад
@@tutorialsEU explaining delegate/event handling. Deeper advanced OOP in many classes. Multiple Object handling and shortcuts I bought your C# masterclass in German on Udemy. It was quite good to be honest. But at some parts not pretty deep especially delegates and OOP. But still definitely advisable 😜👍
@tutorialsEU
@tutorialsEU 2 года назад
@@freshrafyz6607 thanks for sharing that information! :)
@tausifshaikh7629
@tausifshaikh7629 2 года назад
@@freshrafyz6607 I want the same
@Robert723
@Robert723 Год назад
Thanks for the video! Amazing!
@mr___deekshi1154
@mr___deekshi1154 Год назад
You are just Awesome Jann!!
@mohamedabed1816
@mohamedabed1816 2 года назад
We need more of MVC please
@tutorialsEU
@tutorialsEU 2 года назад
MVC in which context?
@mohamedabed1816
@mohamedabed1816 2 года назад
The models please
@LuigiZambetti
@LuigiZambetti 2 года назад
@@tutorialsEU A entire RU-vid course (or playlist) of MVC 5 could be really useful.
@neil9151
@neil9151 Год назад
1:05:25 save for reference
@marcinzale
@marcinzale 2 года назад
Great tutorial as always. Are you considering doing a tutorial about .Net MAUI?
@tutorialsEU
@tutorialsEU 2 года назад
yes we will cover maui soon :)
@kelzkel2660
@kelzkel2660 2 года назад
@@tutorialsEU can't really wait for this, your teaching style is simply awesome. you can consider doing something short on domain driven design(DDD), authentication and authorization with identity server4, oauth2 and open id. then may be design architecture and pattern. thanks
@mayanksinha5538
@mayanksinha5538 Год назад
Subscribed to your paid course on your web
@Lanthiren
@Lanthiren Год назад
I wanted to try out the site but you stopped running the 7 day free trial :(
@magnus87
@magnus87 Год назад
Is there a way to change the behavior of the MDI Child so that when they are minimized they show up as icons with their corresponding label?
@fooballers7883
@fooballers7883 Год назад
WoW...German discipline in action.....Thank you ...will soon join your course.
@John-ju2os
@John-ju2os Год назад
I did the exercise 01:11:15 like this: byte a = 5; byte b = 20; a = b; b = 5; Console.WriteLine($"a = {a} e b = {b}"); is this correct? Nice course.
@minox510
@minox510 Год назад
It's not correct. If you would replace "a" with different number it would be incorrect. :P
@IINEXUSGAMERII
@IINEXUSGAMERII Год назад
The purpose of the exercise was to avoid using numbers when reassigning a value. Although the output is correct, the method used is incorrect.
@TonyTigerTonyTiger
@TonyTigerTonyTiger 9 месяцев назад
That does not meet the specified requirements. If the code is changed to .... byte a = 17 then your code will output the wrong result. A swap program would swap the values no matter what they are.
@kenboyer8682
@kenboyer8682 2 года назад
1:46:05 why is there "Console:Read():" below "Console.WriteLine(Calculate());"
@aracodematerial5191
@aracodematerial5191 Год назад
Cause If you dont have "Console.Read()" You only can see the code for some seconds. If you write "Console.Read()" You actually can have your terminal open for what time you want
@thiagooliveira4192
@thiagooliveira4192 2 года назад
Thanks!
@salemalmnsory1073
@salemalmnsory1073 Год назад
Awesome tutorial , thanks
@dewaliii
@dewaliii 4 месяца назад
Is there a table of contents by time list?
@jimmiedavis434
@jimmiedavis434 2 года назад
Hey there. Should I be aware of anything regarding this course on youtube versus the c# masterclass on your website? I just enrolled/subscribed and am taking that c# masterclass on the website. Should I be following this one on youtube instead?
@tutorialsEU
@tutorialsEU 2 года назад
Hi, no follow the course on our website :) It covers way more topics
@julioo534
@julioo534 Год назад
I have one question. In my area is very demanding tecnoligies like Angular, C# and .NET. what version of .NET should i learn? Thanks fors answer
@FunnyAnimClip
@FunnyAnimClip 8 месяцев назад
Nice C# learning
@eazygaming3248
@eazygaming3248 Год назад
46:50-51:50-56:50
@jn1mrgn
@jn1mrgn Год назад
8:12 this is why I never got anywhere with C type languages. So arcane and wordy.
@rasipogulabhaskar9858
@rasipogulabhaskar9858 Год назад
Really wonderful class...
@arisaek7764
@arisaek7764 Год назад
So helpful tutorial well done
@tutorialsEU
@tutorialsEU Год назад
Thank you! Cheers!
@akbarm1369
@akbarm1369 7 месяцев назад
what different between .net and .net core?
@aravindkavs6024
@aravindkavs6024 Год назад
I want to learn c# before that what should I learn please give me a perfect path. I'm new to coding
@hamedrezayi5949
@hamedrezayi5949 2 года назад
Hey does anyone knows where I can learn Lazarus and FPC coding tutorials?or does this concept is also helpful for Pascal users.
@drpatt1
@drpatt1 Год назад
I believe I replied to you but it was deleted. There is Lazarus info on RU-vid but the Free Pascal language videos are pretty old.
@otaibi3084
@otaibi3084 Год назад
so perfect explain thanks
@nnamdinwafor5523
@nnamdinwafor5523 Год назад
Please which Lenovo Thinkpad or any other budget laptop would you suggest for someone start off in codin
@TonyTigerTonyTiger
@TonyTigerTonyTiger 9 месяцев назад
I am half way through: 3:31:06. So far, I have not seen anything from C# 10. The code would probably all work in C# 6: there are no new features used.
@kon_radar
@kon_radar Год назад
This tutorial is great, but it does not teach me how to bake pretzels ;) I learn by observing how bigger projects work, and then learn the rules for that. For example I want to see the code for a GUI app - calculator with buttons and user input. Different ways and languages to achieve that, and then studying all the parts of it, what was used and how it was written. For example that "WxWidgets" was used in C++, or Pygubu in Python, or Lazarus in Delphi, etc.
@cc3mita
@cc3mita Год назад
Yeah, you are watching the wrong video. I am sure if you google or youtube search the examples you provided you will get videos with exactly what you are looking for. This type of video is to introduce beginners to programming concepts and syntax. Cheers :)
@ItachiUchiha-jj9tm
@ItachiUchiha-jj9tm Год назад
Thanks a lot!!!!!!!!!!
@TheLord-cj2nb
@TheLord-cj2nb Год назад
I fell asleep three times trying to watch this video
@nageshnaik8051
@nageshnaik8051 9 месяцев назад
Amazing!
Далее
Every single feature of C# in 10 minutes
9:50
Просмотров 123 тыс.
Timings hated him #standoff #timing #meme
00:14
Просмотров 430 тыс.
MILLION JAMOASI 2024 4K
2:17:51
Просмотров 11 млн
Brutally honest advice for new .NET Web Developers
7:19
Learning C# In A Week... Otherwise I Fail University
9:04
*Next-door 10x Software Engineer* [FULL]
4:50
Просмотров 572 тыс.
C# Tutorial For Beginners - Learn C# Basics in 1 Hour
1:10:32
Is LEARNING WPF still WORTH it in 2023?
10:59
Просмотров 48 тыс.
ASP.NET Core Crash Course - C# App in One Hour
1:00:44
Просмотров 1,5 млн
100+ Linux Things you Need to Know
12:23
Просмотров 1 млн
Learn To Code Like a GENIUS and Not Waste Time
9:41
Просмотров 1,5 млн
Timings hated him #standoff #timing #meme
00:14
Просмотров 430 тыс.