TypeLoadExceptionとは? わかりやすく解説

TypeLoadException クラス

型の読み取りエラー発生したときにスローされる例外

名前空間: System
アセンブリ: mscorlib (mscorlib.dll 内)
構文構文

<SerializableAttribute> _
<ComVisibleAttribute(True)> _
Public Class TypeLoadException
    Inherits SystemException
    Implements ISerializable
Dim instance As TypeLoadException
[SerializableAttribute] 
[ComVisibleAttribute(true)] 
public class TypeLoadException : SystemException,
 ISerializable
[SerializableAttribute] 
[ComVisibleAttribute(true)] 
public ref class TypeLoadException : public
 SystemException, ISerializable
/** @attribute SerializableAttribute() */ 
/** @attribute ComVisibleAttribute(true) */ 
public class TypeLoadException extends SystemException
 implements ISerializable
SerializableAttribute 
ComVisibleAttribute(true) 
public class TypeLoadException extends
 SystemException implements ISerializable
解説解説

共通言語ランタイムアセンブリまたはアセンブリ内の型を検出できない場合や、その型を読み込めない場合に、TypeLoadExceptionスローさます。

TypeLoadException は、値 0x80131522 を保持する HRESULT COR_E_TYPELOAD を使用します

TypeLoadExceptionインスタンス初期プロパティ値の一覧については、TypeLoadException コンストラクタトピック参照してください

継承階層継承階層
System.Object
   System.Exception
     System.SystemException
      System.TypeLoadException
         System.DllNotFoundException
         System.EntryPointNotFoundException
スレッド セーフスレッド セーフ
この型の public static (Visual Basic では Shared) メンバはすべて、スレッド セーフです。インスタンス メンバ場合は、スレッド セーフであるとは限りません。
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照

TypeLoadException コンストラクタ ()

TypeLoadException クラス新しインスタンス初期化します。

名前空間: System
アセンブリ: mscorlib (mscorlib.dll 内)
構文構文

Dim instance As New TypeLoadException
public TypeLoadException ()
public:
TypeLoadException ()
public TypeLoadException ()
public function TypeLoadException ()
解説解説
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
TypeLoadException クラス
TypeLoadException メンバ
System 名前空間

TypeLoadException コンストラクタ (String)

指定したエラー メッセージ使用して、TypeLoadException クラス新しインスタンス初期化します。

名前空間: System
アセンブリ: mscorlib (mscorlib.dll 内)
構文構文

解説解説
使用例使用例
Imports System

Public Class TypeLoadException_Constructor2
   Public Shared Sub Main()
      Console.WriteLine("This program throws an exception upon
 successful run.")
      Console.WriteLine("Generating TypeLoadException with custom
 message...")
      Try
         ' Generate a new instance of TypeLoadException.
         TypeLoadExceptionDemoClass.GenerateException()
      Catch e As TypeLoadException
         Console.WriteLine(("TypeLoadException: "
 + ControlChars.Cr + ControlChars.Tab + "Error Message = "
 + e.Message))
      Catch e As Exception
         Console.WriteLine(("Exception: " + ControlChars.Cr
 + ControlChars.Tab + "Error Message = " + e.Message))
      End Try
   End Sub 'Main
End Class 'TypeLoadException_Constructor2

Class TypeLoadExceptionDemoClass
   Public Shared Function
 GenerateException() As Boolean
      ' Throw a TypeLoadException with custom defined message.
      Throw New TypeLoadException("This
 is a custom generated TypeLoadException error message")
   End Function 'GenerateException
End Class 'TypeLoadExceptionDemoClass
using System;

public class TypeLoadException_Constructor2
{
   public static void Main()
 
   {
      Console.WriteLine("This program throws an exception upon successful run.");
      Console.WriteLine("Generating TypeLoadException with custom message...");
      try 
      {
         // Generate a new instance of TypeLoadException.
         TypeLoadExceptionDemoClass.GenerateException();
      }  
      catch (TypeLoadException e)
      {
         Console.WriteLine ("TypeLoadException: \n\tError Message = " +
 e.Message);
      }
      catch (Exception e)
      {
         Console.WriteLine ("Exception: \n\tError Message = " + e.Message);
      }
   }
}

class TypeLoadExceptionDemoClass
{ 
   public static bool GenerateException()
 
   {
      // Throw a TypeLoadException with custom defined message.
      throw new TypeLoadException("This is a custom generated
 TypeLoadException error message");
   }
}
using namespace System;
class TypeLoadExceptionDemoClass
{
public:
   static bool GenerateException()
   {
      
      // Throw a TypeLoadException with custom defined message.
      throw gcnew TypeLoadException( "This is a custom generated TypeLoadException
 error message" );
   }

};

int main()
{
   Console::WriteLine( "This program throws an exception upon successful run."
 );
   Console::WriteLine( "Generating TypeLoadException with custom message..."
 );
   try
   {
      
      // Generate a new instance of TypeLoadException.
      TypeLoadExceptionDemoClass::GenerateException();
   }
   catch ( TypeLoadException^ e ) 
   {
      Console::WriteLine( "TypeLoadException: \n\tError Message = {0}",
 e->Message );
   }
   catch ( Exception^ e ) 
   {
      Console::WriteLine( "Exception: \n\tError Message = {0}", e->Message
 );
   }

}

import System.*;

public class TypeLoadException_Constructor2
{
    public static void main(String[]
 args)
    {
        Console.WriteLine("This program throws an exception upon "
            +"successful run.");
        Console.WriteLine("Generating TypeLoadException with "
            +"custom message...");
        try {
            // Generate a new instance of TypeLoadException.
            TypeLoadExceptionDemoClass.GenerateException();
        }
        catch (TypeLoadException e) {
            Console.WriteLine("TypeLoadException: \n\tError Message = "
 
                + e.get_Message());
        }
        catch (System.Exception e) {
            Console.WriteLine("Exception: \n\tError Message = " 
                + e.get_Message());
        }
    } //main
} //TypeLoadException_Constructor2

class TypeLoadExceptionDemoClass
{
    public static boolean GenerateException()
    {
        // Throw a TypeLoadException with custom defined message.
        throw new TypeLoadException("This is a custom generated
 "
            +"TypeLoadException error message");
    } //GenerateException
} //TypeLoadExceptionDemoClass
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
TypeLoadException クラス
TypeLoadException メンバ
System 名前空間

TypeLoadException コンストラクタ (SerializationInfo, StreamingContext)

シリアル化したデータ使用して、TypeLoadException クラス新しインスタンス初期化します。

名前空間: System
アセンブリ: mscorlib (mscorlib.dll 内)
構文構文

Protected Sub New ( _
    info As SerializationInfo, _
    context As StreamingContext _
)
Dim info As SerializationInfo
Dim context As StreamingContext

Dim instance As New TypeLoadException(info,
 context)
protected TypeLoadException (
    SerializationInfo info,
    StreamingContext context
)
protected:
TypeLoadException (
    SerializationInfo^ info, 
    StreamingContext context
)
protected TypeLoadException (
    SerializationInfo info, 
    StreamingContext context
)
protected function TypeLoadException (
    info : SerializationInfo, 
    context : StreamingContext
)

パラメータ

info

シリアル化されたオブジェクト データ保持するオブジェクト

context

転送元または転送先に関すコンテキスト情報

例外例外
例外種類条件

ArgumentNullException

info オブジェクトnull 参照 (Visual Basic では Nothing) です。

解説解説
使用例使用例

例外生成し例外データファイルシリアル化してから、その例外再構築する例を次に示します。このコード例実行するには、アセンブリの完全限定名を指定する必要がありますアセンブリの完全限定名を取得する方法については、「アセンブリ名」を参照してください

Imports System
Imports System.Reflection
Imports System.Runtime.Serialization
Imports System.Runtime.Serialization.Formatters.Soap
Imports System.Security.Permissions
Imports System.IO

Class GetObjectDataDemo

   Public Shared Sub Main()
      ' Get a reference to the assembly mscorlib.dll, which is always
      ' loaded. (System.String is defined in mscorlib.)
      Dim tString As Type = GetType(String)
      Dim mscorlib As [Assembly] = tString.Assembly

      Try
         Console.WriteLine("Attempting to load a type not
 present in the assembly 'mscorlib'")
         ' This loading of invalid type raises a TypeLoadException
         Dim myType As Type = mscorlib.GetType("System.NonExistentType",
 True)
      Catch
         ' Serialize the exception to disk and reconstitute it.
         Dim ErrorDatetime as System.DateTime
 = DateTime.Now
         Console.WriteLine("A TypeLoadException has been raised.")

         ' Create MyTypeLoadException instance with current time.
         Dim myException As new
 MyTypeLoadException(ErrorDatetime)
         Dim myFormatter as IFormatter  = new
 SoapFormatter()
         Dim myFileStream as Stream 
         myFileStream = New FileStream("typeload.xml",
 FileMode.Create, FileAccess.Write, FileShare.None)
         Console.WriteLine("Serializing the TypeLoadException
 with DateTime as " _
             & ErrorDatetime.ToString())

         ' Serialize the MyTypeLoadException instance to a file.
         myFormatter.Serialize(myFileStream, myException)
         myFileStream.Close()

         Console.WriteLine("Deserializing the Exception.")
         myFileStream = New FileStream("typeload.xml",
 FileMode.Open, FileAccess.Read, FileShare.None)

         ' Deserialize and reconstitute the instance from file.
         myException = CType(myFormatter.Deserialize(myFileStream), MyTypeLoadException)
         myFileStream.Close()
         Console.WriteLine("Deserialized exception has ErrorDateTime
 = " + myException.ErrorDateTime.ToString())
      End Try
   End Sub 'Main
End Class

' This class overrides the GetObjectData method and initializes
' its data with current time. 
<Serializable()> _
Public Class MyTypeLoadException
   Inherits TypeLoadException

   Private _errorDateTime As System.DateTime
 = DateTime.Now
   Public ReadOnly Property
 ErrorDateTime As DateTime
      Get
         Return _errorDateTime
      End Get
   End Property

   Public Sub New(myDateTime
 As DateTime)
      _errorDateTime = myDateTime
   End Sub 'New

   Protected Sub New(sInfo
 As SerializationInfo, sContext As StreamingContext)
      MyBase.New(sInfo, sContext)
      ' Reconstitute the deserialized information into the instance.
      _errorDateTime = sInfo.GetDateTime("ErrorDate")
   End Sub 'New

   ' GetObjectData overrides must always have a demand for SerializationFormatter.
   <SecurityPermissionAttribute(SecurityAction.Demand, SerializationFormatter:=true)>
 _
   Public Overrides Sub
 GetObjectData(sInfo As SerializationInfo, sContext As
 StreamingContext)
      MyBase.GetObjectData(sInfo, sContext)
      ' Add a value to the Serialization information.
      sInfo.AddValue("ErrorDate", ErrorDateTime)
   End Sub 'GetObjectData

End Class 'MyTypeLoadExceptionChild
using System;
using System.Reflection;
using System.Runtime.Serialization;
using System.Runtime.Serialization.Formatters.Soap; 
using System.Security.Permissions;
using System.IO;

class GetObjectDataDemo
{
   public static void Main()
   {
      // Get a reference to the assembly mscorlib.dll, which is always
      // loaded. (System.String is defined in mscorlib.)
      Assembly mscorlib = typeof(string).Assembly;

      try
      {
         Console.WriteLine ("Attempting to load a type not present in
 the assembly 'mscorlib'");
         // This loading of invalid type raises a TypeLoadException
         Type myType = mscorlib.GetType("System.NonExistentType", true);
      }         
      catch (TypeLoadException)
      {
         // Serialize the exception to disk and reconstitute it.
         System.DateTime ErrorDatetime = DateTime.Now;
         Console.WriteLine("A TypeLoadException has been raised.");

         // Create MyTypeLoadException instance with current time.
         MyTypeLoadException myException = new MyTypeLoadException(ErrorDatetime);
         IFormatter myFormatter = new SoapFormatter();
         Stream myFileStream = new FileStream("typeload.xml",
 FileMode.Create, FileAccess.Write, FileShare.None);
         Console.WriteLine("Serializing the TypeLoadException with DateTime
 as " + ErrorDatetime);

         // Serialize the MyTypeLoadException instance to a file.
         myFormatter.Serialize(myFileStream, myException);
         myFileStream.Close();

         Console.WriteLine("Deserializing the Exception.");
         myFileStream = new FileStream("typeload.xml",
 FileMode.Open, FileAccess.Read, FileShare.None);

         // Deserialize and reconstitute the instance from file.
         myException = (MyTypeLoadException) myFormatter.Deserialize(myFileStream);
         myFileStream.Close();
         Console.WriteLine("Deserialized exception has ErrorDateTime = "
 + myException.ErrorDateTime);
      }
   }
}

// This class overrides the GetObjectData method and initializes
// its data with current time. 

[Serializable]
public class MyTypeLoadException : TypeLoadException
 
{
   private System.DateTime _errorDateTime = DateTime.Now;
   public DateTime ErrorDateTime { get { return
 _errorDateTime; }}

   public MyTypeLoadException(DateTime myDateTime) 
   {
      _errorDateTime = myDateTime;
   }

   protected MyTypeLoadException(SerializationInfo sInfo, StreamingContext
 sContext) 
       : base(sInfo, sContext)
   {
      // Reconstitute the deserialized information into the instance.
      _errorDateTime = sInfo.GetDateTime("ErrorDate");
   }

   // GetObjectData overrides must always have a demand for SerializationFormatter.
   [SecurityPermissionAttribute(SecurityAction.Demand, SerializationFormatter=true)]
   public override void GetObjectData(SerializationInfo
 sInfo, StreamingContext sContext) 
   {
      base.GetObjectData(sInfo, sContext);
      // Add a value to the Serialization information.
      sInfo.AddValue("ErrorDate", ErrorDateTime);
   }
}
#using <System.Runtime.Serialization.Formatters.Soap.dll>

using namespace System;
using namespace System::Reflection;
using namespace System::Runtime::Serialization;
using namespace System::Runtime::Serialization::Formatters::Soap;
using namespace System::IO;

// This class overrides the GetObjectData method and initializes
// its data with current time. 

[Serializable]
public ref class MyTypeLoadExceptionChild:
 public TypeLoadException
{
public:
   System::DateTime ErrorDateTime;
   MyTypeLoadExceptionChild()
   {
      ErrorDateTime = DateTime::Now;
   }

   MyTypeLoadExceptionChild( DateTime myDateTime )
   {
      ErrorDateTime = myDateTime;
   }


protected:
   MyTypeLoadExceptionChild( SerializationInfo^ sInfo, StreamingContext * sContext
 )
   {
      
      // Reconstitute the deserialized information into the instance.
      ErrorDateTime = sInfo->GetDateTime( "ErrorDate" );
   }


public:
   void GetObjectData( SerializationInfo^ sInfo, StreamingContext
 * sContext )
   {
      
      // Add a value to the Serialization information.
      sInfo->AddValue( "ErrorDate", ErrorDateTime );
   }

};

int main()
{
   
   // Load the mscorlib assembly and get a reference to it.
   // You must supply the fully qualified assembly name for mscorlib.dll
 here.
   Assembly^ myAssembly = Assembly::Load( "Assembly text name, Version, Culture,
 PublicKeyToken" );
   try
   {
      Console::WriteLine( "Attempting to load a type not present in
 the assembly 'mscorlib'" );
      
      // This loading of invalid type raises a TypeLoadException
      Type^ myType = myAssembly->GetType( "System::NonExistentType",
 true );
   }
   catch ( TypeLoadException^ ) 
   {
      
      // Serialize the exception to disk and reconstitute it back again.
      try
      {
         System::DateTime ErrorDatetime = DateTime::Now;
         Console::WriteLine( "A TypeLoadException has been raised." );
         
         // Create MyTypeLoadException instance with current time.
         MyTypeLoadExceptionChild^ myTypeLoadExceptionChild = gcnew MyTypeLoadExceptionChild(
 ErrorDatetime );
         IFormatter^ myFormatter = gcnew SoapFormatter;
         Stream^ myFileStream = gcnew FileStream( "typeload.xml",FileMode::Create,FileAccess::Write,FileShare::None
 );
         Console::WriteLine( "Serializing the TypeLoadException with DateTime
 as {0}", ErrorDatetime );
         
         // Serialize the MyTypeLoadException instance to a file.
         myFormatter->Serialize( myFileStream, myTypeLoadExceptionChild );
         myFileStream->Close();
         Console::WriteLine( "Deserializing the Exception." );
         myFileStream = gcnew FileStream( "typeload.xml",FileMode::Open,FileAccess::Read,FileShare::None
 );
         
         // Deserialize and reconstitute the instance from file.
         myTypeLoadExceptionChild = safe_cast<MyTypeLoadExceptionChild^>(myFormatter->Deserialize(
 myFileStream ));
         myFileStream->Close();
         Console::WriteLine( "Deserialized exception has ErrorDateTime = {0}",
 myTypeLoadExceptionChild->ErrorDateTime );
      }
      catch ( Exception^ e ) 
      {
         Console::WriteLine( "Exception : {0}", e->Message );
      }

   }
   catch ( Exception^ e ) 
   {
      Console::WriteLine( "Exception : {0}", e->Message );
   }

}

プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照

TypeLoadException コンストラクタ (String, Exception)

指定したエラー メッセージと、この例外原因である内部例外への参照使用して、TypeLoadException クラス新しインスタンス初期化します。

名前空間: System
アセンブリ: mscorlib (mscorlib.dll 内)
構文構文

解説解説

前の例外直接結果としてスローされる例外については、InnerException プロパティに、前の例外への参照格納されます。InnerException プロパティは、コンストラクタ渡されたものと同じ値を返しますInnerException プロパティによって内部例外値がコンストラクタ渡されなかった場合は、null 参照 (Visual Basic の場合Nothing) を返します

TypeLoadExceptionインスタンス初期プロパティ値を次の表に示します

使用例使用例
Imports System
Imports System.Runtime.InteropServices

Public Class TypeLoadException_Constructor3
   Public Shared Sub Main()
      Console.WriteLine("Calling a method in a non-existent DLL
 which triggers a TypeLoadException.")
      Try
         TypeLoadExceptionDemoClass.GenerateException()
      Catch e As TypeLoadException
         Console.WriteLine(("TypeLoadException: "
 + ControlChars.Cr + ControlChars.Tab + "Error Message = "
 + e.Message))
         Console.WriteLine(("TypeLoadException: "
 + ControlChars.Cr + ControlChars.Tab + "InnerException Message
 = " + e.InnerException.Message))
      Catch e As Exception
         Console.WriteLine(("Exception: " + ControlChars.Cr
 + ControlChars.Tab + "Error Message = " + e.Message))
      End Try
   End Sub 'Main
End Class 'TypeLoadException_Constructor3

Class TypeLoadExceptionDemoClass
   ' A call to this method will raise a TypeLoadException.
   Public Declare Sub NonExistentMethod
 Lib "NonExistentDLL.DLL" Alias
 "MethodNotExists" ()

   Public Shared Sub GenerateException()
      Try
         NonExistentMethod()
      Catch e As TypeLoadException
         ' Rethrow exception with the exception as inner exception
         Throw New TypeLoadException("This
 exception was raised due to a call to an invalid method.", e)
      End Try
   End Sub 'GenerateException
End Class 'TypeLoadExceptionDemoClass
using System;
using System.Runtime.InteropServices;

public class TypeLoadException_Constructor3
{
   public static void Main()
 
   {
      Console.WriteLine("Calling a method in a non-existent
 DLL which triggers a TypeLoadException.");
      try 
      {
         TypeLoadExceptionDemoClass.GenerateException();
      }  
      catch (TypeLoadException e)
      {
         Console.WriteLine ("TypeLoadException: \n\tError Message = " +
 e.Message);
         Console.WriteLine ("TypeLoadException: \n\tInnerException Message =
 " + e.InnerException.Message );
      }  
      catch (Exception e)
      {
         Console.WriteLine ("Exception: \n\tError Message = " + e.Message);
      }
   }
}

class TypeLoadExceptionDemoClass
{ 
   // A call to this method will raise a TypeLoadException.
   [DllImport("NonExistentDLL.DLL", EntryPoint="MethodNotExists")]
   public static extern void
 NonExistentMethod();

   public static void GenerateException()
 
   {
      try 
      {
         NonExistentMethod();
      }
      catch (TypeLoadException e) 
      {
         // Rethrow exception with the exception as inner exception
         throw new TypeLoadException("This exception was
 raised due to a call to an invalid method.", e);
      }
   }
}
using namespace System;
using namespace System::Runtime::InteropServices;
ref class TypeLoadExceptionDemoClass
{
public:

   // A call to this method will raise a TypeLoadException.

   [DllImport("NonExistentDLL.DLL",EntryPoint="MethodNotExists")]
   static void NonExistentMethod();
   static void GenerateException()
   {
      try
      {
         NonExistentMethod();
      }
      catch ( TypeLoadException^ e ) 
      {
         
         // Rethrow exception with the exception as inner exception
         throw gcnew TypeLoadException( "This exception was raised due to a
 call to an invalid method.",e );
      }

   }

};

int main()
{
   Console::WriteLine( "Calling a method in a non-existent
 DLL which triggers a TypeLoadException." );
   try
   {
      TypeLoadExceptionDemoClass::GenerateException();
   }
   catch ( TypeLoadException^ e ) 
   {
      Console::WriteLine( "TypeLoadException: \n\tError Message = {0}",
 e->Message );
      Console::WriteLine( "TypeLoadException: \n\tInnerException Message = {0}",
 e->InnerException->Message );
   }
   catch ( Exception^ e ) 
   {
      Console::WriteLine( "Exception: \n\tError Message = {0}", e->Message
 );
   }

}

import System.*;
import System.Runtime.InteropServices.*;

public class TypeLoadException_Constructor3
{
    public static void main(String[]
 args)
    {
        Console.WriteLine("Calling a method in a non-existent
 DLL which"
            +" triggers a TypeLoadException.");
        try {
            TypeLoadExceptionDemoClass.GenerateException();
        }
        catch (TypeLoadException e) {
            Console.WriteLine("TypeLoadException: \n\tError Message = "
 
                + e.get_Message());
            Console.WriteLine("TypeLoadException: \n\tInnerException Message
 = "
                + e.get_InnerException().get_Message());
        }
        catch (System.Exception e) {
            Console.WriteLine("Exception: \n\tError Message = "
                + e.get_Message());
        }
    } //main
} //TypeLoadException_Constructor3

class TypeLoadExceptionDemoClass
{
    // A call to this method will raise a TypeLoadException.
    /** @attribute DllImport("NonExistentDLL.DLL", EntryPoint = 
        "MethodNotExists")
     */
    public static native void
 NonExistentMethod();

    public static void GenerateException()
    {
        try {
            NonExistentMethod();
        }
        catch (TypeLoadException e) {
            // Rethrow exception with the exception as inner exception
            throw new TypeLoadException("This exception was
 raised due to a "
                +"call to an invalid method.", e);
        }
    } //GenerateException
} //TypeLoadExceptionDemoClass
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照

TypeLoadException コンストラクタ


TypeLoadException プロパティ


パブリック プロパティパブリック プロパティ

プロテクト プロパティプロテクト プロパティ
  名前 説明
プロテクト プロパティ HResult  特定の例外割り当てられているコード化数値である HRESULT を取得または設定します。 ( Exception から継承されます。)
参照参照

関連項目

TypeLoadException クラス
System 名前空間
Exception クラス

その他の技術情報

例外の処理とスロー

TypeLoadException メソッド


パブリック メソッドパブリック メソッド

プロテクト メソッドプロテクト メソッド
参照参照

関連項目

TypeLoadException クラス
System 名前空間
Exception クラス

その他の技術情報

例外の処理とスロー

TypeLoadException メンバ

型の読み取りエラー発生したときにスローされる例外

TypeLoadException データ型公開されるメンバを以下の表に示します


パブリック コンストラクタパブリック コンストラクタ
プロテクト コンストラクタプロテクト コンストラクタ
  名前 説明
プロテクト メソッド TypeLoadException オーバーロードされますTypeLoadException クラス新しインスタンス初期化します。
パブリック プロパティパブリック プロパティ
プロテクト プロパティプロテクト プロパティ
  名前 説明
プロテクト プロパティ HResult  特定の例外割り当てられているコード化数値である HRESULT を取得または設定します。(Exception から継承されます。)
パブリック メソッドパブリック メソッド
プロテクト メソッドプロテクト メソッド
参照参照

関連項目

TypeLoadException クラス
System 名前空間
Exception クラス

その他の技術情報

例外の処理とスロー



英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「TypeLoadException」の関連用語

TypeLoadExceptionのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



TypeLoadExceptionのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2024 Microsoft.All rights reserved.

©2024 GRAS Group, Inc.RSS