views:

21

answers:

2

Hi

       I have a .net application and now i am trying to build it           
       to  mobile application but i am getting an error as
       "type or namespace InterpolationMode not found"
       but i have included all references
       using System.Drawing;
       using System.Drawing.Drawing2D;
       using System.Drawing.Imaging;

       Please let me know wat i have to include
A: 

It's System.Drawing.dll according to MSDN. Maybe mobile SDK doesn't include it? I'm not sure

Sergej Andrejev
I have include System.Drawing.dll
Vinay D
+1  A: 

InterpolationMode is not supported in the Compact Framework (nor are any method overloads that accept it, so adding it would be of no use). Without seeing how you're using it, it's very difficult to recommend a workaround.

ctacke