您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

19 行
390 B

  1. #pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
  2. using System;
  3. using System.Collections;
  4. namespace Cysharp.Threading.Tasks
  5. {
  6. // UnityEngine Bridges.
  7. public partial struct UniTask
  8. {
  9. public static IEnumerator ToCoroutine(Func<UniTask> taskFactory)
  10. {
  11. return taskFactory().ToCoroutine();
  12. }
  13. }
  14. }