'/** ' * Eine neue Instanz der Klasse welche die Settings eines anderen Counters übernimmt ' * @param Counter StartWert ' * @return Counter Die Singleton-Instanz '*/ Public Function copyOf(ByRef iCounter As Counter) As Counter Set copyOf = New Counter copyOf.initialize iCounter.start, iCounter.step End Function