LoginSignup
2
1

More than 5 years have passed since last update.

MissingManifestResourceExceptionの対処法

Last updated at Posted at 2012-11-07

Formクラスの定義の前に他のクラスの定義を書くと、この例外が発生します。
http://support.microsoft.com/kb/318603/en-us

例:

public class Hoge
{
    ...
}

public partial class MainWindow : Form
{
    ...
}

Hogeの定義をMainWindowの後ろに移動すると解決します。
心当たりがないのに、いきなりシステムの深い部分で例外が出るのでびっくりしますね。

2
1
1

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
2
1