We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Class TestClass Implements IReadOnlyDictionary(Of Integer, Integer) Public Function TryGetValue(key as Integer, ByRef value As Integer) As Boolean Implements IReadOnlyDictionary(Of Integer, Integer).TryGetValue value = key End Function Private Sub TestMethod() Dim value As Integer Me.TryGetValue(5, value) End Sub End Class
class TestClass : IReadOnlyDictionary<int, int> { public bool TryGetValue(int key, ref int value) { value = key; return default; } private void TestMethod() { var value = default(int); TryGetValue(5, ref value); } }
internal partial class TestClass : IReadOnlyDictionary<int, int> { public bool TryGetValue(int key, out int value) { value = key; return default; } private void TestMethod() { var value = default(int); TryGetValue(5, out value); } }
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
VB.Net input code
Erroneous output
Expected output
Details
The text was updated successfully, but these errors were encountered: