Zedfox Technologies Blog

Menu

Skip to content
  • Home
  • Blog

Tag Archives: tutorial

C# events tutorial and simple explanation

Posted on March 1, 2014 by zf

C# events Events are very helpful in managing interactions between calling object and called object. In this example we capture the essence of c# events. Here’s how the discussion between two objects goes: Object COUNTER has an internal counter that can be incremented by AddOne() method Program initializes Object 1 and sets the threshold to […]

C# events tutorial and simple explanation

C# delegates tutorial and simple explanation

Posted on March 1, 2014 by zf

C# delegates C# delegates are awesome. What does delegation mean? Delegation, in simple terms, is to hand off a task. Let’s say John is the CEO and Matthew is a manager who works for John. Daryl and Mary are developers who work for Matthew. CEO John asks Manager Matthew to create for him an desktop […]

C# delegates tutorial and simple explanation