Тёмный
Rainer Stropek
Rainer Stropek
Rainer Stropek
Подписаться
C# and .NET: Fundamentals of Exceptions
40:14
7 месяцев назад
WPF Introduction: Grids, MVVM basics
30:37
7 месяцев назад
An Introduction to WPF
56:08
7 месяцев назад
OOP 2024: Rust Memory Management Introduction
57:05
8 месяцев назад
Recap Entity Framework Core, New Topic (5th Grade)
2:10:45
10 месяцев назад
C# Fundamentals - Queues in C# - A first look
24:58
10 месяцев назад
C# Fundamentals - Stack, Heap, and References
30:42
10 месяцев назад
Introduction to Reactive Forms in Angular
53:04
11 месяцев назад
Using RxJS with Web APIs (OData) in Angular 16
2:08:33
11 месяцев назад
C# and .NET: Inheritance, Abstract Base Classes
31:22
11 месяцев назад
More About Signals, intro to CSS Grid
1:54:31
11 месяцев назад
Комментарии
@BradOntheGo
@BradOntheGo 6 месяцев назад
this looks amazing... curious of backstory, ie what is happening here with bees in the tree vs houses? Also, I am here after watching your wasm deep dive on W\>. exceptional presentation!
@jalalmalekpour402
@jalalmalekpour402 9 месяцев назад
thankful for all Coureses C#
@eandkmusic
@eandkmusic Год назад
Are you also a beekeeper? I'm like you - a developer, but 5 years ago I also had 5 beehives and my own honey))
@SingleWolfTraveller
@SingleWolfTraveller Год назад
love u Rainer. Thanks for sharing
@cavila0217
@cavila0217 Год назад
Hi Rainer, I hope that you are doing well, I'm really thankful to you for all the things that you have taught me, you are my favorite content creator and mentor, keep it up!
@muralikothapalli
@muralikothapalli Год назад
This is a gem of Paralell in C#. Thank you
@DhimanDa
@DhimanDa Год назад
You are a fantastic teacher. Please allow us to comment on your videos <3
@DhimanDa
@DhimanDa Год назад
Please allow us to comment on your video! You are a fantastic teacher on the planet.
@randyrandall1767
@randyrandall1767 2 года назад
I just wanted to tell you... You are an amazing teacher and I love your C# videos. Keep at it!
@justaDN96
@justaDN96 2 года назад
hi, bin abendschüler wollt nur sagen weiter so mit den tutorial videos und bitte den abendschullehrer hinweisen, dass es auch deinen ytkanal gibt. danke!
@sjpt1434
@sjpt1434 3 года назад
Thank u very much ..I learned much from you ..even my German improved little bit :) while watching German video:) best regards from Yemen (South Arabia)
@moosegoose1282
@moosegoose1282 3 года назад
is there a community for ur c# courses?
@morsheddld
@morsheddld 3 года назад
where does this body() method come from?
@younghsiang2509
@younghsiang2509 3 года назад
Great tutorial!
@gussy_44
@gussy_44 4 года назад
Where am I?
@gelordtube
@gelordtube 4 года назад
1:05 applies to xamarin forms too?
@gelordtube
@gelordtube 4 года назад
Hallo Herr Rainer, das ist gut video!!! I watched all the video series since 2010 ~ and they still help me to practice and understand mvvm; two things to add: 1. Why not use a ViewModelBase class? I know it was for educational purposes, but it would have been great to implement that base class the second is like the first, use a RelayCommand class to implements the meths of Icommand.
@juliososa2384
@juliososa2384 4 года назад
Thanks Man...
@amyniovi8087
@amyniovi8087 6 лет назад
So interesting ! thanks! :)
@sovanraksa2112
@sovanraksa2112 6 лет назад
So, if my computer have 4 cores, I can do 4 tasks?
@Christian92177
@Christian92177 5 лет назад
Parallel
@jimficarra7839
@jimficarra7839 6 лет назад
This was awesome on so many levels. I learned more in these 26 minutes than I could have in 4 days of going over documentation. Thank you!
@WahidRezgui
@WahidRezgui 6 лет назад
excellent series of video thanks a lot
@whocaresday
@whocaresday 6 лет назад
do you teach C# for beginners?
@messedupfmj
@messedupfmj 7 лет назад
By far the best MVVM/WPF/Entity Framework tutorial I have found. Basic yes, but functional and practical. Thank you Rainer
@FaNIXAUZ
@FaNIXAUZ 7 лет назад
Ever heard of stopwatch class?
@sureshpalepu9458
@sureshpalepu9458 7 лет назад
Thanks, Very Useful
@abdelilahlamkadmi4198
@abdelilahlamkadmi4198 7 лет назад
Please, forgive me. I found the source code on your site. I find this serie of videos very very importante.
@abdelilahlamkadmi4198
@abdelilahlamkadmi4198 7 лет назад
It's an important tutorial, but , it would be very helpful if the author provide the code source.
@EschoolIsrael
@EschoolIsrael 7 лет назад
Tutorial to save in the wallet for each working day
@CTRLZ3
@CTRLZ3 8 лет назад
Excellent. nice work!
@jcorellana29
@jcorellana29 8 лет назад
Excelente!!!! Gracias
@muhammadwaqasaziz4054
@muhammadwaqasaziz4054 8 лет назад
Simply AWESOME
@muhammadwaqasaziz4054
@muhammadwaqasaziz4054 8 лет назад
AWESOME that's all i can say.
@dfgs27
@dfgs27 8 лет назад
Very clear tutorial serie. Thanks.
@Ryuuzaki667
@Ryuuzaki667 8 лет назад
I want your help please. I have this code. Task[] arrayT = null; int indexT = -1; int numberOfT = 2; while (indexT < (numberOfT - 1)) { indexT++; arrayT[indexT] = Task.Factory.StartNew(() => method(indexT)); } Task.WaitAll(arrayT); //I want to create 2 or more Task in my array dynamically using a while loop, but not works. This code executes only one Task. But if I build my array manually, it works properly. arrayT[0] = Task.Factory.StartNew(() => method(0)); arrayT[1] = Task.Factory.StartNew(() => method(1)); arrayT[2] = Task.Factory.StartNew(() => method(2)); Please help me to create my task dynamically. I'm Sorry but my english is not good.
@sureshpalepu9458
@sureshpalepu9458 7 лет назад
double result = 0d; // Task[] task = new Task[Number_OF_Iterations]; Task<double>[] tasks = new Task<double>[Number_OF_Iterations]; for (int i = 0; i < Number_OF_Iterations; i++) { tasks[i] = Task.Run(() => DoIntensiveCalculations()); } Task.WaitAll(tasks); foreach (var item in tasks) { result += item.Result; } Console.WriteLine("The Results is {0}", result);
@AntonioMSpb
@AntonioMSpb 8 лет назад
May I ask you to share solution code somewhere?
@AntonioMSpb
@AntonioMSpb 8 лет назад
Thank you for clear and exhaustively explanations on howto with ef + wpf + testing
@vinugopinath1803
@vinugopinath1803 8 лет назад
Thanks a lot Rainer...
@BorisFischman
@BorisFischman 9 лет назад
Great stuff ! Thank you.
@sachinkainth9508
@sachinkainth9508 9 лет назад
Thanks for this great explanation.
@shawn576
@shawn576 9 лет назад
I like the way you make a new line before .Method(). It looks much easier to read.. I should start doing that.
@con_sensus
@con_sensus 10 лет назад
Excellent! Thanks!
@brettsullivan4025
@brettsullivan4025 10 лет назад
#ohogs!!!!!!!!!!!!!!!
@StahliSoft
@StahliSoft 10 лет назад
Vielen Dank für das Tutorial !
@chandantiwari2441
@chandantiwari2441 10 лет назад
I am surprise to see that the video I was looking for the long time has already been uploaded since 2010. Thank you for uploading this video.
@codeyoga
@codeyoga 10 лет назад
Must watch to learn TPL. Looking forward to the Rx video !
@zaid.doctor2015
@zaid.doctor2015 10 лет назад
thanks for the tutorial.but PropertyChanged event is alway returning null.
@Sevius969
@Sevius969 10 лет назад
Really useful information. Thanks
@silvioconci
@silvioconci 10 лет назад
Best TPL video EVER.... and I've seen a lot these days.
@tyeasir
@tyeasir 10 лет назад
Your advanced skills are impressive.