2016年6月29日 星期三

擴充方法 (VB.NET)

擴充方法 (VB.NET)

Imports System.Runtime.CompilerServices

Module Module2
    Sub main()
        Dim s As String = "hello"
        s.print()
    End Sub
    Public Sub print(ByVal aStrig As String)
        Console.WriteLine(aStrig)
    End Sub
End Module

沒有留言:

張貼留言