Considering some lifestyle videos beside your amazing lectures
@BradOntheGo8 ай бұрын
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!
@jalalmalekpour40211 ай бұрын
thankful for all Coureses C#
@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 Жыл бұрын
love u Rainer. Thanks for sharing
@cavila02172 жыл бұрын
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!
@muralikothapalli2 жыл бұрын
This is a gem of Paralell in C#. Thank you
@DhimanDa2 жыл бұрын
You are a fantastic teacher. Please allow us to comment on your videos <3
@DhimanDa2 жыл бұрын
Please allow us to comment on your video! You are a fantastic teacher on the planet.
@randyrandall17672 жыл бұрын
I just wanted to tell you... You are an amazing teacher and I love your C# videos. Keep at it!
@justaDN962 жыл бұрын
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!
@sjpt14343 жыл бұрын
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)
@moosegoose12823 жыл бұрын
is there a community for ur c# courses?
@morsheddld3 жыл бұрын
where does this body() method come from?
@younghsiang25094 жыл бұрын
Great tutorial!
@gussy_444 жыл бұрын
Where am I?
@gelordtube4 жыл бұрын
1:05 applies to xamarin forms too?
@gelordtube4 жыл бұрын
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.
@juliososa23844 жыл бұрын
Thanks Man...
@amyniovi80876 жыл бұрын
So interesting ! thanks! :)
@sovanraksa21126 жыл бұрын
So, if my computer have 4 cores, I can do 4 tasks?
@Christian921776 жыл бұрын
Parallel
@jimficarra78396 жыл бұрын
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!
@WahidRezgui6 жыл бұрын
excellent series of video thanks a lot
@whocaresday6 жыл бұрын
do you teach C# for beginners?
@messedupfmj7 жыл бұрын
By far the best MVVM/WPF/Entity Framework tutorial I have found. Basic yes, but functional and practical. Thank you Rainer
@FaNIXAUZ7 жыл бұрын
Ever heard of stopwatch class?
@sureshpalepu94587 жыл бұрын
Thanks, Very Useful
@abdelilahlamkadmi41987 жыл бұрын
Please, forgive me. I found the source code on your site. I find this serie of videos very very importante.
@abdelilahlamkadmi41987 жыл бұрын
It's an important tutorial, but , it would be very helpful if the author provide the code source.
@EschoolIsrael7 жыл бұрын
Tutorial to save in the wallet for each working day
@CTRLZ38 жыл бұрын
Excellent. nice work!
@jcorellana298 жыл бұрын
Excelente!!!! Gracias
@muhammadwaqasaziz40548 жыл бұрын
Simply AWESOME
@muhammadwaqasaziz40548 жыл бұрын
AWESOME that's all i can say.
@dfgs278 жыл бұрын
Very clear tutorial serie. Thanks.
@Ryuuzaki6678 жыл бұрын
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.
@sureshpalepu94587 жыл бұрын
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);
@AntonioMSpb8 жыл бұрын
May I ask you to share solution code somewhere?
@AntonioMSpb8 жыл бұрын
Thank you for clear and exhaustively explanations on howto with ef + wpf + testing
@vinugopinath18039 жыл бұрын
Thanks a lot Rainer...
@BorisFischman9 жыл бұрын
Great stuff ! Thank you.
@sachinkainth95089 жыл бұрын
Thanks for this great explanation.
@shawn57610 жыл бұрын
I like the way you make a new line before .Method(). It looks much easier to read.. I should start doing that.
@con_sensus10 жыл бұрын
Excellent! Thanks!
@brettsullivan402510 жыл бұрын
#ohogs!!!!!!!!!!!!!!!
@StahliSoft10 жыл бұрын
Vielen Dank für das Tutorial !
@chandantiwari244110 жыл бұрын
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.
@codeyoga10 жыл бұрын
Must watch to learn TPL. Looking forward to the Rx video !
@zaid.doctor201510 жыл бұрын
thanks for the tutorial.but PropertyChanged event is alway returning null.
@Sevius96910 жыл бұрын
Really useful information. Thanks
@silvioconci10 жыл бұрын
Best TPL video EVER.... and I've seen a lot these days.