Beispiel #1
0
        static void Main(string[] args)
        {
            BOB bob = new BOB(new IGLOO());

            bob.constract();
            House myhouse = bob.GetHouse();
        }
Beispiel #2
0
 static void StartAnotherBob(Package p)
 {
     using (var bob = new BOB())
     {
         bob.Process(p);
     }
 }