Esempio n. 1
0
 void onAdLoaded(AndroidJavaObject ad)
 {
     this.interstitialAd.executeOnMainThread(() => {
         if (interstitialAd.InterstitialAdDidLoad != null)
         {
             interstitialAd.InterstitialAdDidLoad();
         }
     });
 }
 private void onAdLoaded(AndroidJavaObject ad)
 {
     interstitialAd.executeOnMainThread(delegate
     {
         if (interstitialAd.InterstitialAdDidLoad != null)
         {
             interstitialAd.InterstitialAdDidLoad();
         }
     });
 }