Define and use Structure : Structure « Class Module « VB.Net Tutorial

Home
VB.Net Tutorial
1.Language Basics
2.Data Type
3.Operator
4.Statements
5.Date Time
6.Class Module
7.Development
8.Collections
9.Generics
10.Attributes
11.Event
12.LINQ
13.Stream File
14.GUI
15.GUI Applications
16.Windows Presentation Foundation
17.2D Graphics
18.I18N Internationlization
19.Reflection
20.Regular Expressions
21.Security
22.Socket Network
23.Thread
24.Windows
25.XML
26.Database ADO.net
27.Design Patterns
VB.Net
VB.Net by API
VB.Net Tutorial » Class Module » Structure 
6.46.2.Define and use Structure
Structure CheckRecord
    Dim intCheckNumber As Integer
    Dim dteCheckDate As Date
    Dim sngCheckAmount As Single
    Dim strCheckPaidTo As String
End Structure

public class Test
   public Shared Sub Main

        Dim udtCheck As CheckRecord

        'Add data to the structure.
        udtCheck.intCheckNumber = 275
        udtCheck.dteCheckDate = #9/12/2001#
        udtCheck.sngCheckAmount = 104.25
        udtCheck.strCheckPaidTo = "Gas Co."

        Console.WriteLine("CHECK INFORMATION")
        Console.WriteLine("Number: " & udtCheck.intCheckNumber)
        Console.WriteLine("Date: " & udtCheck.dteCheckDate)
        Console.WriteLine("Amount: " & udtCheck.sngCheckAmount)
        Console.WriteLine("Paid To: " & udtCheck.strCheckPaidTo)


   End Sub
End class
CHECK INFORMATION
Number: 275
Date: 12/09/2001
Amount: 104.25
Paid To: Gas Co.
6.46.Structure
6.46.1.Structure
6.46.2.Define and use Structure
6.46.3.Define and use structure with modifier
6.46.4.Define Structure
6.46.5.By value or by reference
6.46.6.Use Structure as Function parameter
6.46.7.Use With and Structure
6.46.8.Class Vs Structure in ByValue and ByRef
6.46.9.structure implements interface
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.