本文整理匯總了C#中System.Type.IsArrayImpl方法的典型用法代碼示例。如果您正苦於以下問題:C# Type.IsArrayImpl方法的具體用法?C# Type.IsArrayImpl怎麽用?C# Type.IsArrayImpl使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類System.Type
的用法示例。
在下文中一共展示了Type.IsArrayImpl方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: MyTypeDelegator
//引入命名空間
using System;
using System.Reflection;
public class MyTypeDelegator : TypeDelegator
{
public string myElementType = null;
public Type myType;
public MyTypeDelegator(Type myType) : base(myType)
{
this.myType = myType;
}
// Override IsArrayImpl().
protected override bool IsArrayImpl()
{
// Determine whether the type is an array.
if(myType.IsArray)
{
myElementType = "array";
return true;
}
// Return false if the type is not an array.
return false;
}
}
public class Type_IsArrayImpl
{
public static void Main()
{
try
{
int myInt = 0 ;
// Create an instance of an array element.
int[] myArray = new int[5];
MyTypeDelegator myType = new MyTypeDelegator(myArray.GetType());
Console.WriteLine("\nDetermine whether the variable is an array.\n");
// Determine whether myType is an array type.
if( myType.IsArray)
Console.WriteLine("The type of myArray is {0}.", myType.myElementType);
else
Console.WriteLine("myArray is not an array.");
myType = new MyTypeDelegator(myInt.GetType());
// Determine whether myType is an array type.
if( myType.IsArray)
Console.WriteLine("The type of myInt is {0}.", myType.myElementType);
else
Console.WriteLine("myInt is not an array.");
}
catch( Exception e )
{
Console.WriteLine("Exception: {0}", e.Message );
}
}
}