GoogleAdMobAds.GADInterstitial.EnsureGADInterstitialDelegate C# (CSharp) Method

EnsureGADInterstitialDelegate() private method

private EnsureGADInterstitialDelegate ( ) : _GADInterstitialDelegate
return _GADInterstitialDelegate
		_GADInterstitialDelegate EnsureGADInterstitialDelegate ()
		{
			var del = WeakDelegate;
			if (del == null || (!(del is _GADInterstitialDelegate))){
				del = new _GADInterstitialDelegate ();
				WeakDelegate = del;
			}
			return (_GADInterstitialDelegate) del;
		}