本文整理匯總了VB.NET中System.Type.IsArrayImpl方法的典型用法代碼示例。如果您正苦於以下問題:VB.NET Type.IsArrayImpl方法的具體用法?VB.NET Type.IsArrayImpl怎麽用?VB.NET Type.IsArrayImpl使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類System.Type
的用法示例。
在下文中一共展示了Type.IsArrayImpl方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的VB.NET代碼示例。
示例1: MyTypeDelegator
' 導入命名空間
Imports System.Reflection
Public Class MyTypeDelegator
Inherits TypeDelegator
Public myElementType As String = Nothing
Public myType As Type
Public Sub New(ByVal myType As Type)
MyBase.New(myType)
Me.myType = myType
End Sub
' Override IsArrayImpl().
Protected Overrides Function IsArrayImpl() As Boolean
' Determine whether the type is an array.
If myType.IsArray Then
myElementType = "array"
Return True
End If
' Return false if the type is not an array.
Return False
End Function 'IsArrayImpl
End Class
Public Class Type_IsArrayImpl
Public Shared Sub Main()
Try
Dim myInt As Integer = 0
' Create an instance of an array element.
Dim myArray(4) As Integer
Dim myType As New MyTypeDelegator(myArray.GetType())
Console.WriteLine(ControlChars.NewLine + "Determine whether the variable is an array." + ControlChars.NewLine)
' Determine whether 'myType' is an array type.
If myType.IsArray Then
Console.WriteLine("The type of myArray is {0}.", myType.myElementType)
Else
Console.WriteLine("myArray is not an array.")
End If
myType = New MyTypeDelegator(myInt.GetType())
' Determine whether myType is an array type.
If myType.IsArray Then
Console.WriteLine("The type of myInt is {0}.", myType.myElementType)
Else
Console.WriteLine("myInt is not an array.")
End If
Catch e As Exception
Console.WriteLine("Exception: {0}", e.Message.ToString())
End Try
End Sub
End Class