does anyone know how to fix this exception? An unhandled exception of type 'System.NotImplementedException' occurred in mscorlib.dll
I'm using .NET microframework 4.1 and I have the "mscorlib" reference added but when I try to load a BMP image from the resources:
internal static Microsoft.SPOT.Bitmap GetBitmap(Resources.BitmapResources id)
{
return Microsoft.SPOT.Bitmap(Microsoft.SPOT.ResourceUtility.GetObject(ResourceManager, id));
}
[System.SerializableAttribute()]
internal enum BitmapResources : short
{
image = 24837,
}
I get that exception in the return sentence.
Stack trace:
System.Resources.ResourceManager::GetObjectInternal\r\nSystem.Resources.ResourceManager::GetObjectFromId\r\nMicrosoft.SPOT.ResourceUtility::GetObject\r\nFEZTouchDriver_Example.Resources::GetBitmap\r\nFEZTouchDriver_Example.Program::InitGraphics\r\nFEZTouchDriver_Example.Program::Main\r\n" string