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
#if !HAS_EXPENSIVE_TRYFINALLY// Try/finally incurs a very large performance hit in mono-wasm - https://github.com/dotnet/runtime/issues/50783
1037
1039
try
1038
1040
{
1039
-
returnInnerMeasureOverride(availableSize);
1041
+
#endif
1042
+
varresult=InnerMeasureOverride(availableSize);
1043
+
1044
+
#if HAS_EXPENSIVE_TRYFINALLY// Try/finally incurs a very large performance hit in mono-wasm - https://github.com/dotnet/runtime/issues/50783
1045
+
UnlockDefinitions();
1046
+
#endif
1047
+
1048
+
returnresult;
1049
+
#if !HAS_EXPENSIVE_TRYFINALLY// Try/finally incurs a very large performance hit in mono-wasm - https://github.com/dotnet/runtime/issues/50783
0 commit comments