Beispiel #1
0
 void onInterstitialDismissed(AndroidJavaObject ad)
 {
     this.interstitialAd.executeOnMainThread(() => {
         if (interstitialAd.InterstitialAdDidClose != null)
         {
             interstitialAd.InterstitialAdDidClose();
         }
     });
 }
 private void onInterstitialDismissed(AndroidJavaObject ad)
 {
     interstitialAd.executeOnMainThread(delegate
     {
         if (interstitialAd.InterstitialAdDidClose != null)
         {
             interstitialAd.InterstitialAdDidClose();
         }
     });
 }