Lets say Im writing a class that does some information parsing and has many Properties. Now some of these properties could be divided into groups

eg:

my class describes some version info about the data that is coming in

eg. Major Version, Minor Version, Revision, Build Number

should I do somthing like this

VB Code:
  1. Class MyTestClass
  2.  
  3. Public structure sVersion
  4.    Dim sMajor as Short
  5.    Dim sMinor as Short
  6.    Dim sRevsion as Short
  7.    Dim sBuild as Short
  8.  
  9. Functon Parse(strData as String)
  10. 'sets values about based on strData
  11. End Function
  12. End Structure
  13.  
  14. End Class