CodeConverter icon indicating copy to clipboard operation
CodeConverter copied to clipboard

Explicitly implemented property gets internal setter

Open GrahamTheCoder opened this issue 3 years ago • 0 comments

Property in the interface being implemented non-public setter/getter i.e.:

Interface IFoo     
   Property Prop As Integer 
End Interface
Class Foo 
   Implements IFoo
   Property Prop As Integer Implements IFoo.Prop
        Get
        End Get
        Friend Set
        End Set
    End Property
End Class

The converter will generate a property with an internal setter.

Originally posted by @Yozer in https://github.com/icsharpcode/CodeConverter/issues/822#issuecomment-1030053015

GrahamTheCoder avatar Feb 06 '22 09:02 GrahamTheCoder