How to use C# 6.0 feature in Unity
To use async/await
,dynamic
in Unity
First, copy
CSharp60Support
file into project's root path, same level as Assets. Then, importCSharp60Support for Unity 5.unitypackage
into project. Last,ReimportAll
the project orReopen
the editor.
Now, we can use async/await
,dynamic
.etc in C# scripts.
See Here.