vote up 3 vote down star

I figured I would ask... but is there a way to have the Get part of a property available as public, but keep the set as private?

Otherwise I am thinking I need two properties or a property and a method, just figured this would be cleaner.

flag

2 Answers

vote up 10 vote down check

Yes, quite straight forward:

Private _name As String

Public Property Name() As String
    Get
        Return _name
    End Get
    Private Set(ByVal value As String)
        _name = value
    End Set
End Property
link|flag
Wow... I code a lot in VB, and had no idea that you could do that. – Meta-Knight Sep 22 at 21:24
Awesome! I really did not think I could do it, though it seemed like I should be able to. If I could vote up twice I would. – IPX Ares Sep 22 at 23:18
vote up 0 vote down
    Public Property Name() As String
        Get
            Return _name
        End Get
        Private Set(ByVal value As String)
            _name = value
        End Set
   End Property
link|flag
You're five minutes late ;-) – Meta-Knight Sep 22 at 21:35

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.