Advertisement
Guest User

Untitled

a guest
Dec 10th, 2016
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. public float this[int row, int col]
  2. {
  3. get
  4. {
  5. ...
  6. }
  7. set
  8. {
  9. ...
  10. }
  11. }
  12.  
  13. Public Default Property Item(row As Integer, col As Integer) As Single
  14. Get
  15. ' ...
  16. End Get
  17.  
  18. Set
  19. ' ...
  20. End Set
  21. End Property
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement