[Proposal] Allow using New in Function declaration
Open
- Dominant language
- No language data
- Stars
- 328
- Forks
- 71
- PR merge metrics
- No merged PRs in 30d
Description
Suppose we have this function:
```VB.NET
Function Foo() As List(Of Integer)
Foo = New List(Of Integer)
Foo.Add(1)
Foo.Add(2)
End Function
```
I suggest to allow use `New` in the declaration (as in properties), like this:
```VB.NET
Function Foo() As New List(Of Integer)
Foo.Add(1)
Foo.Add(2)
End Function
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.