Skip to content

Instantly share code, notes, and snippets.

View tscbp's full-sized avatar

Ben Pedersen tscbp

View GitHub Profile
@tscbp
tscbp / Barker.cs
Created February 9, 2016 21:00
C# implementation of composition > inheritance "MurderRobotDog"
using System;
namespace MurderRobotDog
{
interface IBarker
{
void Bark();
}
class FriendlyBarker : IBarker