// DelegateWrapper.cs - Delegate wrapper implementation // // Author: Rachel Hestilow // // (c) 2002 Rachel Hestilow namespace GLib { using System; using System.Collections; /// /// DelegateWrapper Class /// /// /// /// Wrapper class for delegates. /// public class DelegateWrapper { static ArrayList _instances = new ArrayList (); protected DelegateWrapper () { } } }