Ejemplo n.º 1
0
        //
        // Events and properties from the delegate
        //

        _GADInterstitialDelegate EnsureGADInterstitialDelegate()
        {
            var del = WeakDelegate;

            if (del == null || (!(del is _GADInterstitialDelegate)))
            {
                del          = new _GADInterstitialDelegate();
                WeakDelegate = del;
            }
            return((_GADInterstitialDelegate)del);
        }
		//
		// Events and properties from the delegate
		//
		
		_GADInterstitialDelegate EnsureGADInterstitialDelegate ()
		{
			var del = WeakDelegate;
			if (del == null || (!(del is _GADInterstitialDelegate))){
				del = new _GADInterstitialDelegate ();
				WeakDelegate = del;
			}
			return (_GADInterstitialDelegate) del;
		}