Is there any REAL difference between the following 2 items other than syntax?
VB Code:
  1. Public Function GetString() as String
  2.   return "hello world"
  3. End Function
  4.  
  5. Public Readonly Property GetString() as String
  6.   return "hello world"
  7. End Property