提交 b90c3711 编写于 作者: Y yair halberstadt

Add test for different case VB

上级 3ee81529
......@@ -927,6 +927,24 @@ End class",
Get
End Get
End Property
End class")
End Function
<Fact, Trait(Traits.Feature, Traits.Features.CodeActionsReplaceMethodWithProperty)>
<WorkItem(42699, "https://github.com/dotnet/roslyn/issues/42699")>
Public Async Function TestSameNameMemberAsPropertyDifferentCase() As Task
Await TestInRegularAndScriptAsync(
"class C
Public goo as integer
function [||]GetGoo() as integer
End function
End class",
"class C
Public goo as integer
ReadOnly Property Goo1 as integer
Get
End Get
End Property
End class")
End Function
End Class
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册