csharp async / awaitの例

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp async / awaitの例相关的知识,希望对你有一定的参考价值。

using System.Threading.Tasks;
using UnityEngine;

public class VanishAsync : MonoBehaviour {
    public async void Vanish () {
        await Task.Delay (1000);
        gameObject.SetActive (false);
    }
}

以上是关于csharp async / awaitの例的主要内容,如果未能解决你的问题,请参考以下文章

kotlin的suspend对比csharp的async&await

csharp C#5.0 async / awaitでの主要メソッドの书き方

csharp コルーチンの例

csharp C#の委譲の例

async/await成对匹配,不是一个死循环吗

csharp interfaceの明示的実装の例(プレイヤーキャラクターのアニメーション切り替え)