I am using C# 4.7.2 an PRISM Unity 6.2.0
I got a public class like this
public partial class MyClass
{
public static string MyFirstString = "MyFirstString";
public static string MySecondString = "MySecondString";
}
The strings are used to register types
public void Initialize()
{
RegisterObjects();
}
private void RegisterObjects()
{
container.RegisterType<object, SomeClass>( MyClass.MyFirstString );
container.RegisterType<object, SomeOtherClass>( MyClass.MySecondString );
}
container is an IUnityContainer, Initiliaze() is a member of IModule (from PRISM)
SomeClass is registered without any problems. But SomeOtherClass can not be registered. A System.MissingFieldException is thrown on MyClass.MySecondString.
Everything is public, the build succeeds, one can even navigate to MySecondString by pressing F12 (in Visual Studio).
What could cause this exception?