0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

c#のジェネリックを使ったコードで、プログラムがクラッシュする現象

Posted at

#概要
薄い内容の記事です

c#のジェネリックを使ったコードを練習で書いてみたところ、
実行時にプログラムがクラッシュしてしまう事がありました。

#問題のコード例


struct Test<T> { }
struct HasTest
{
	//プログラムがクラッシュするのは、おそらく↓が原因
	Test<HasTest> test;
}

static class Program
{
	static void Main()
	{
		try
		{
			/*
			↓を実行するとプログラムがクラッシュする。
			System.TypeLoadExceptionが投げられるが、キャッチできない
			エラーメッセージは、「Could not load type 'HasTest' from assembly」
			*/
			new HasTest().ToString();
		}
		catch
		{
			System.Console.WriteLine("エラー発生");
		}
	}
}

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?