Reporter | Olga Lobacheva (olka) |
---|---|
Created | Mar 22, 2011 2:49:56 PM |
Updated | Jan 30, 2012 5:35:03 PM |
Priority | Major |
Type | Bug |
Fix versions | No Fix versions |
State | Open |
Assignee | Alexey Kuptsov (alexey.kuptsov) |
Subsystem | No subsystem |
Affected versions | No Affected versions |
Fixed in build | No Fixed in build |
The text of quick fix is:
'Add parameter at Foo(IEnumerable enumerable, Integer)'
But it should be in VB style:
'Add parameter at Foo(ByVal enumerable as IEnumerable, Integer)'
'Add parameter at Foo(IEnumerable enumerable, Integer)'
But it should be in VB style:
'Add parameter at Foo(ByVal enumerable as IEnumerable, Integer)'
Imports System.Collections Public Module MM Sub Main() Dim x as IEnumerable Foo(x{caret}, 34) End Sub sub Foo(x As Integer) End Sub End Module