Home
Programming With Wolfgang
Cancel

Visitor Pattern

Today I want to talk about the visitor pattern. It is a powerful pattern and I think it is used too little. Maybe because it looks complex but once you got how it works, it is pretty easy and power...

Whats new in C# 7.0

Recently I made a post, about the new features in C# 6.0 and in this post I will show you whats new in C# 7.0. Whats new in C# 7.0 To use all features of C# 7.0 you have to use Visual Studio 2017...

Web sites cannot be started unless WAS and the World Wide Web Publishing Service are running

Today I was working on a new Continuous Development task for one of my Projects. I was testing if it works and got an error message. After Fixing the error I rerun the deployment and got an error i...

Whats new in C# 6.0

C# 6.0 is around for a while but in the last couple weeks, I spoke with many programmers who don’t know anything about the new features. Therefore I want to present some of the new features in this...

How I learned programming - Part 5

Welcome to part 5 of how I learned programming. In my last post, I wrote about how I got into web development and what problems I encountered while learning. You can find this post here. In this p...

How I learned programming - Part 4

Welcome to part 4 of how I learned programming. In my last post, I wrote about how I learned Java and C++ in Canada and how the teacher there impressed me. You can find this post here. In this pos...

How I learned programming - Part 3

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 C...

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 sto...

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 theoretica...

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...