指定したエラー メッセージを使用して、ArrayTypeMismatchException クラスの新しいインスタンスを初期化します。
名前空間: System
アセンブリ: mscorlib (mscorlib.dll 内)
構文
'宣言
Public Sub New ( _
message As String _
)
'使用
Dim message As String
Dim instance As New ArrayTypeMismatchException(message)
public ArrayTypeMismatchException (
string message
)
public:
ArrayTypeMismatchException (
String^ message
)
public ArrayTypeMismatchException (
String message
)
public function ArrayTypeMismatchException (
message : String
)
パラメータ
- message
エラーを説明する String。
解説
message パラメータの内容は、ユーザーが理解できる内容にします。このコンストラクタの呼び出し元は、この文字列が現在のシステムのカルチャに合わせてローカライズ済みであることを確認しておく必要があります。
ArrayTypeMismatchException のインスタンスの初期プロパティ値を次の表に示します。
プロパティ |
値 |
---|---|
null 参照 (Visual Basic の場合は Nothing)。 |
|
エラー メッセージ文字列。 |
使用例
ArrayTypeMismatchException クラスの ArrayTypeMismatchException(String) コンストラクタの例を次に示します。このコンストラクタには、2 つの配列を引数として使用し、2 つの配列が同じ種類であるかどうかを確認する関数が含まれています。2 つの配列の種類が異なる場合は、新しい ArrayTypeMismatchException がスローされ、呼び出し元のメソッドでキャッチされます。
Imports System
Public Class ArrayTypeMisMatchConst
Public Sub CopyArray(myArray As Array, myArray1 As Array)
Dim typeArray1 As String = myArray.GetType().ToString()
Dim typeArray2 As String = myArray1.GetType().ToString()
' Check whether the two arrays are of same type or not.
If typeArray1 = typeArray2 Then
' Copies the values from one array to another.
myArray.SetValue("Name: " + myArray1.GetValue(0), 0)
myArray.SetValue("Name: " + myArray1.GetValue(1), 1)
Else
' Throw an exception of type 'ArrayTypeMismatchException' with a message string as parameter.
Throw New ArrayTypeMismatchException("The Source and destination arrays are not of same type.")
End If
End Sub 'CopyArray
Shared Sub Main()
Try
Dim myStringArray(2) As String
myStringArray.SetValue("Jones", 0)
myStringArray.SetValue("John", 1)
Dim myIntArray(2) As Integer
Dim myArrayType As New ArrayTypeMisMatchConst()
myArrayType.CopyArray(myStringArray, myIntArray)
Catch e As ArrayTypeMismatchException
Console.WriteLine(("The Exception Message is : " + e.Message))
End Try
End Sub 'Main
End Class 'ArrayTypeMisMatchConst
using System;
public class ArrayTypeMisMatchConst
{
public void CopyArray(Array myArray,Array myArray1)
{
string typeArray1 = myArray.GetType().ToString();
string typeArray2 = myArray1.GetType().ToString();
// Check whether the two arrays are of same type or not.
if(typeArray1==typeArray2)
{
// Copies the values from one array to another.
myArray.SetValue("Name: "+myArray1.GetValue(0),0);
myArray.SetValue("Name: "+myArray1.GetValue(1),1);
}
else
{
// Throw an exception of type 'ArrayTypeMismatchException' with a message string as parameter.
throw new ArrayTypeMismatchException("The Source and destination arrays are not of same type.");
}
}
static void Main()
{
try
{
string[] myStringArray = new string[2];
myStringArray.SetValue("Jones",0);
myStringArray.SetValue("John",1);
int[] myIntArray = new int[2];
ArrayTypeMisMatchConst myArrayType = new ArrayTypeMisMatchConst();
myArrayType.CopyArray(myStringArray,myIntArray);
}
catch(ArrayTypeMismatchException e)
{
Console.WriteLine("The Exception Message is : " + e.Message);
}
}
}
using namespace System;
public ref class ArrayTypeMisMatchConst
{
public:
void CopyArray( Array^ myArray, Array^ myArray1 )
{
String^ typeArray1 = myArray->GetType()->ToString();
String^ typeArray2 = myArray1->GetType()->ToString();
// Check whether the two arrays are of same type or not.
if ( typeArray1 == typeArray2 )
{
// Copies the values from one array to another.
myArray->SetValue( String::Concat( "Name: ", myArray1->GetValue( 0 )->ToString() ), 0 );
myArray->SetValue( String::Concat( "Name: ", myArray1->GetValue( 1 )->ToString() ), 1 );
}
else
{
// Throw an exception of type 'ArrayTypeMismatchException' with a message String* as parameter.
throw gcnew ArrayTypeMismatchException( "The Source and destination arrays are not of same type." );
}
}
};
int main()
{
try
{
array<String^>^myStringArray = gcnew array<String^>(2);
myStringArray->SetValue( "Jones", 0 );
myStringArray->SetValue( "John", 1 );
array<Int32>^myIntArray = gcnew array<Int32>(2);
ArrayTypeMisMatchConst^ myArrayType = gcnew ArrayTypeMisMatchConst;
myArrayType->CopyArray( myStringArray, myIntArray );
}
catch ( ArrayTypeMismatchException^ e )
{
Console::WriteLine( "The Exception Message is : {0}", e->Message );
}
}
import System.*;
public class ArrayTypeMisMatchConst
{
public void CopyArray(Array myArray, Array myArray1)
{
String typeArray1 = myArray.GetType().ToString();
String typeArray2 = myArray1.GetType().ToString();
// Check whether the two arrays are of same type or not.
if (typeArray1.Equals(typeArray2)) {
// Copies the values from one array to another.
myArray.SetValue("Name: " + myArray1.GetValue(0), 0);
myArray.SetValue("Name: " + myArray1.GetValue(1), 1);
}
else {
// Throw an exception of type 'ArrayTypeMismatchException' with a
// message string as parameter.
throw new ArrayTypeMismatchException("The Source and destination"
+ " arrays are not of same type.");
}
} //CopyArray
public static void main(String[] args)
{
try {
String myStringArray[] = new String[2];
myStringArray.SetValue("Jones", 0);
myStringArray.SetValue("John", 1);
int myIntArray[] = new int[2];
ArrayTypeMisMatchConst myArrayType = new ArrayTypeMisMatchConst();
myArrayType.CopyArray(myStringArray, myIntArray);
}
catch (ArrayTypeMismatchException e) {
Console.WriteLine("The Exception Message is : " + e.get_Message());
}
} //main
} //ArrayTypeMisMatchConst
プラットフォーム
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、1.0
参照
関連項目
ArrayTypeMismatchException クラス
ArrayTypeMismatchException メンバ
System 名前空間