Generic Point Structure : Generic Class « Generics « VB.Net

Home
VB.Net
1.2D
2.Application
3.Class
4.Data Structure
5.Data Types
6.Database ADO.net
7.Development
8.Event
9.File Directory
10.Generics
11.GUI
12.Language Basics
13.LINQ
14.Network Remote
15.Security
16.Thread
17.Windows Presentation Foundation
18.Windows System
19.XML
20.XML LINQ
VB.Net Tutorial
VB.Net by API
VB.Net » Generics » Generic ClassScreenshots 
Generic Point Structure
  


Option Explicit On
Option Strict On

Module Program
  Sub Main()
    Dim intPt As New Point(Of Integer)(100100)
    Console.WriteLine(intPt.ToString())
    Dim dblPt As New Point(Of Double)(5.63.23)
    Console.WriteLine(dblPt.ToString())
    Dim p1 As New Point(Of Integer)(1043)
    Dim p2 As New Point(Of Integer)(6987)
    Console.WriteLine(p1)
    Console.WriteLine(p2)
    Swap(Of Point(Of Integer))(p1, p2)
    Swap(p1, p2)
    Console.WriteLine(p1)
    Console.WriteLine(p2)

  End Sub
  Public Function Swap(Of T)(ByRef a As T, ByRef b As TAs T
    Console.WriteLine("T is a {0}.", GetType(T))
    Dim temp As T
    temp = a
    a = b
    b = temp
  End Function
End Module

Public Structure Point(Of T)
  Private xPos, yPos As T

  Public Sub New(ByVal x As T, ByVal y As T)
    xPos = x : yPos = y
  End Sub
  Public Property X() As T
    Get
      Return xPos
    End Get
    Set(ByVal value As T)
      xPos = value
    End Set
  End Property
  Public Property Y() As T
    Get
      Return xPos
    End Get
    Set(ByVal value As T)
      yPos = value
    End Set
  End Property
  Public Overrides Function ToString() As String
    Return String.Format("({0}, {1})", xPos, yPos)
  End Function
End Structure

   
    
  
Related examples in the same category
1.Generic List stores Generic ClassGeneric List stores Generic Class
2.Generic Class DemoGeneric Class Demo
3.Declare a generic type
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.