摘要:Visual Studio 2008 新功能 - Extension Method
首先新增一個Class, 並加入下列方法:
Imports Microsoft.VisualBasic
Imports System.Runtime.CompilerServices
Module StringExtension
透過上述的擴充模組,就可以在程式中使用String型態時,使用這個自訂的擴充功能.
Private Sub MyTestMothod()
Dim name As String = "John"
name.ReturnStr()
End Sub
如果是Integer型態,就是使用Integer的擴充模組
Module IntegerExtension
程式就可以這樣使用:
Dim money As Integer = 100
money.ReturnCount()
這功能看起來是不是很方便呢? :)
如果您有微軟技術開發的問題,可以到MSDN Forum發問。
如果您有微軟IT管理的問題,可以到TechNet Forum發問喔。