Esempio n. 1
0
 // apply a given function to all PlugIns in the class registry
 public static void ApplyToAll(PlugInCallBackFunction f)
 {
     for (int i = 0; i < _itemsInRegistry; i++)
     {
         f(_registry[i]);
     }
 }
Esempio n. 2
0
		// apply a given function to all PlugIns in the class registry
		public static void ApplyToAll(PlugInCallBackFunction f)
		{
			for (int i = 0; i < _itemsInRegistry; i++)
			{
				f(_registry[i]);
			}
		}