您好,我想处理我的admob非页内广告并每隔60秒显示一次。在Java中我们做postDelayed(),你能告诉我如何使用C#来实现它吗?
这是我的代码:
AdManager.Instance.ShowInterstitial();
答案 0 :(得分:0)
我使用这个鳕鱼eto acheive,如果有人想:
Invoke("DoSomething", 60) //DoSomething will happen in 60seconds
和
public void DoSomething() {
////your code here
}