Welcome to part 3 of how I learned programming. In my last post, I wrote about how I learned C# in university in Austria. You can find this post here. In this post, I will talk about studying in Canada and the differences to Austria. Moving to Canada I went to Canada for two semesters. There […]
Programming
How I learned programming – Part 2
Welcome to part 2 of how I learned programming. In my last post, I wrote about how I started learning C# in university in Austria. You can find this post here. In this post, I will continue my story about how I learned C#. Learning inheritance and more OOP concepts After my second assignment, I had another […]
How I learned programming
I learned programming in university in Austria. Before going to university, I only knew that there is the for loop and the if condition. This was all I knew. Unsurprisingly you have many theoretical classes like requirements engineering, software design and introduction to computer systems in your first semesters. This classes also helped to understand […]
Garbage Collection in C#
The garbage collection is a great feature which makes the life of a programmer was easier. It releases unused variables and doing so frees memory on the heap. If you know C++ or C, you know what a pain it can be to release all unused object and variables and how easily you can forget […]