소스 검색

Fix await warning in Playground.

Bart De Smet 7 년 전
부모
커밋
6a65f1e1cc
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      Ix.NET/Source/Playground/Program.cs

+ 1 - 0
Ix.NET/Source/Playground/Program.cs

@@ -21,6 +21,7 @@ namespace Playground
         static async Task Experiment()
         {
             // Add test code here
+            await Task.Yield(); // Suppress CS1998
         }
 
         [Demo(11, "LINQ to Objects for IEnumerable<T>")]