You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Exceptions originating from Cysharp fail to have line numbers. The IL2CPP event processor reports their instruction address as 0x0.
I.e.
using Cysharp.Threading.Tasks;
public async void DoAThingAsync()
{
Debug.Log("Attempting to do a thing");
await UniTask.Delay(TimeSpan.FromSeconds(1)); // Asynchronous delay
Debug.Log("Actually doing a thing.");
throw new Exception("What what?");
}
The text was updated successfully, but these errors were encountered:
Exceptions originating from
Cysharp
fail to have line numbers. The IL2CPP event processor reports their instruction address as0x0
.I.e.
The text was updated successfully, but these errors were encountered: