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
{{ message }}
This repository was archived by the owner on Mar 9, 2021. It is now read-only.
It would be nice to have a feature which is able to detect using patterns For example, if we have a try-finally statement and call of close method of AutoCloseable or Closeable interfaces then we can convert this try-finally statement to a C# using statement.
The text was updated successfully, but these errors were encountered:
Seems like a lot of work in order to use syntactic sugar. Try/finally is being generated correct, right? We just want to optimize to a using(){} when possible (which is then converted back to try/finally by the compiler)?
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
It would be nice to have a feature which is able to detect using patterns For example, if we have a
try-finally
statement and call ofclose
method ofAutoCloseable
orCloseable
interfaces then we can convert this try-finally statement to a C# using statement.The text was updated successfully, but these errors were encountered: