Type.GetArrayRank 메서드
Array의 차원 수를 가져옵니다.
네임스페이스: System
어셈블리: mscorlib(mscorlib.dll)
구문
‘선언
Public Overridable Function GetArrayRank As Integer
‘사용 방법
Dim instance As Type
Dim returnValue As Integer
returnValue = instance.GetArrayRank
public virtual int GetArrayRank ()
public:
virtual int GetArrayRank ()
public int GetArrayRank ()
public function GetArrayRank () : int
반환 값
현재 Type의 차수를 포함하는 Int32입니다.
예외
예외 형식 | 조건 |
---|---|
이 메서드의 기능이 기본 클래스에서는 지원되지 않으며 대신 파생 클래스에서 구현되어야 하는 경우 |
|
현재 Type이 배열이 아닌 경우 |
예제
다음 예제에서는 배열의 차수를 표시합니다.
Imports System
Imports Microsoft.VisualBasic
Class MyArrayRankSample
Public Shared Sub Main()
Try
Dim myArray(,,) As Integer = {{{12, 2, 35}, {300, 78, 33}}, {{92, 42, 135}, {30, 7, 3}}}
Dim myType As Type = myArray.GetType()
Console.WriteLine("Contents of myArray: {{{12,2,35},{300,78,33}},{{92,42,135},{30,7,3}}}")
Console.WriteLine("myArray has {0} dimensions.", myType.GetArrayRank())
Catch e As NotSupportedException
Console.WriteLine("NotSupportedException raised.")
Console.WriteLine(("Source: " + e.Source))
Console.WriteLine(("Message: " + e.Message))
Catch e As Exception
Console.WriteLine("Exception raised.")
Console.WriteLine(("Source: " + e.Source))
Console.WriteLine(("Message: " + e.Message))
End Try
End Sub 'Main
End Class 'MyArrayRankSample
using System;
class MyArrayRankSample
{
public static void Main()
{
try
{
int[,,] myArray = new int[,,] {{{12,2,35},{300,78,33}},{{92,42,135},{30,7,3}}};
Type myType = myArray.GetType();
Console.WriteLine("Contents of myArray: {{{12,2,35},{300,78,33}},{{92,42,135},{30,7,3}}}");
Console.WriteLine("myArray has {0} dimensions.", myType.GetArrayRank());
}
catch(NotSupportedException e)
{
Console.WriteLine("NotSupportedException raised.");
Console.WriteLine("Source: " + e.Source);
Console.WriteLine("Message: " + e.Message);
}
catch(Exception e)
{
Console.WriteLine("Exception raised.");
Console.WriteLine("Source: " + e.Source);
Console.WriteLine("Message: " + e.Message);
}
}
}
using namespace System;
int main()
{
try
{
array<Int32, 3>^myArray = gcnew array<Int32,3>(3,4,5);
Type^ myType = myArray->GetType();
Console::WriteLine( "myArray has {0} dimensions.", myType->GetArrayRank() );
}
catch ( NotSupportedException^ e )
{
Console::WriteLine( "NotSupportedException raised." );
Console::WriteLine( "Source: {0}", e->Source );
Console::WriteLine( "Message: {0}", e->Message );
}
catch ( Exception^ e )
{
Console::WriteLine( "Exception raised." );
Console::WriteLine( "Source: {0}", e->Source );
Console::WriteLine( "Message: {0}", e->Message );
}
}
import System.*;
class MyArrayRankSample
{
public static void main(String[] args)
{
try {
int myArray[, ,] = new int[,,] { { { 12, 2, 35 } ,
{ 300, 78, 33 } } , { { 92, 42, 135 } , { 30, 7, 3 } } };
Type myType = myArray.GetType();
Console.WriteLine("Contents of myArray: {{{12,2,35},{300,78,33}},"
+"{{92,42,135},{30,7,3}}}");
Console.WriteLine("myArray has {0} dimensions.",
System.Convert.ToString(myType.GetArrayRank()));
}
catch (NotSupportedException e) {
Console.WriteLine("NotSupportedException raised.");
Console.WriteLine("Source: " + e.get_Source());
Console.WriteLine("Message: " + e.get_Message());
}
catch (System.Exception e) {
Console.WriteLine("Exception raised.");
Console.WriteLine("Source: " + e.get_Source());
Console.WriteLine("Message: " + e.get_Message());
}
} //main
} //MyArrayRankSample
플랫폼
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework에서 모든 플래폼의 모든 버전을 지원하지는 않습니다. 지원되는 버전의 목록은 시스템 요구 사항을 참조하십시오.
버전 정보
.NET Framework
2.0, 1.1, 1.0에서 지원
.NET Compact Framework
2.0에서 지원