怎么添加一个VB.NET模块???
例:需在一个模块中定义联系人的数据结构
指的是这样吗?:Module Module1           
   Structure Contact
        <VBFixedString(10)> Public Name As String
        <VBFixedString(20)> Public Telephone As String
        <VBFixedString(20)> Public Email As String
        <VBFixedString(20)> Public Address As String
        <VBFixedString(20)> Public Re As String    End StructureEnd Module]然后怎么把模块和Form1联系到一起??