Anhang A. Anhang

Beispielcode für das Steckbarer-Adapter-Muster – CoolBook

Dies ist der Code für ein Beispiel eines steckbaren Adapters:

using System; using System.Collections.Generic; using System.Windows.Forms; using System.Drawing; using System.Threading; // Adapter-Muster-Beispiel Judith Bishop Aug 2007 // Erstellt ein CoolBook // Von D-J, für das Buch geändert class AdapterPattern { // Klasse SpaceBookSystem { public delegate void InputEventHandler(object sender, EventArgs e, string s); // Adapter public class MyCoolBook : MyOpenBook { static SortedList<string, MyCoolBook> community = new SortedList<string, MyCoolBook>(100); Interact visuals; public MyCoolBook(string name) : base(name) { // Erstelle Interact für den relevanten Thread und starte ...

Get C# 3.0 Entwurfsmuster now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.