Which of the following is the correct way to declare a public read-only property?
a.```
Public ReadOnly Property PropertyName() As DataType
Statements
End Property
```
b.```
Public Property ReadOnly PropertyName() As DataType
Get
Statements
End Get
End Property
```
c. ```
Public ReadOnly Property PropertyName() As DataType
Get
Statements
End Get
End Property
```
d.```
ReadOnly Public Property PropertyName() As DataType
Set
Statements
End Set
End Property
```
c. ```
Public ReadOnly Property PropertyName() As DataType
Get
Statements
End Get
End Property
```
You might also like to view...
What marks the end of a Do While…Loop repetition statement?
a) End While b) End Do While c) Loop d) End Loop
To record the starting address of each of its files, a portion of the disk’s first track is set aside to hold a(n) __________.
a. directory b. index c. boot record d. table