Results 1 to 2 of 2

Thread: Structure Templates?

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Dec 2007
    Posts
    17

    Resolved Structure Templates?

    I'm just moving to VB.Net from Delphi, and I'm trying to find the equivalent to a Record Type. In Delphi, a record is equivalent to a VB STRUCTURE, and a record type defines the layout of the STRUCTURE so that I subsequently can define variables of that specific form. I could use a CLASS but I hate to incorporate the overhead of a reference-type object.

    Is there some way in VB to create a template for subsequent variables? If so, is there a more general way to create user-defined variable templates that the compiler will check for assignment consistency (so that, for example, a NameString cannot be assigned to a variable of type AddressString even though both are Strings)?

    Thanks in advance.

    Howard
    Last edited by habrams; Dec 31st, 2007 at 04:33 PM.

  2. #2

    Thread Starter
    Junior Member
    Join Date
    Dec 2007
    Posts
    17

    Re: Structure Templates?

    Funny how some questions answer themselves . . .

    A Structure IS a user-defined variable template and does exactly what I want. If it has a single field, then it allows me to create assignment incompatible variables from types that otherwise would be compatible.

    Sorry to have bothered.

    Howard

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width