Generic Swap : Generic Function « 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 FunctionScreenshots 
Generic Swap
  

Option Explicit On
Option Strict On

Module Program
  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
  Sub DisplayBaseClass(Of T)()
    Console.WriteLine("Base class of {0} is: {1}.", GetType(T), GetType(T).BaseType)
  End Sub
  Sub Main()
    Dim a, b As Integer
    a = 10 : b = 40
    Swap(Of Integer)(a, b)
    Dim s1, s2 As String
    s1 = "Generics" : s2 = "Rock"
    Swap(Of String)(s1, s2)
    Dim b1, b2 As Boolean
    b1 = True : b2 = False
    Swap(b1, b2)
    DisplayBaseClass(Of Boolean)()
    DisplayBaseClass(Of String)()
    DisplayBaseClass(Of Integer)()
  End Sub
End Module

   
    
  
Related examples in the same category
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.