views:

18

answers:

2

Hi ...

There is tow enum by name "WarpMode" in System.Drawing.Drawing2D namespace

the first include : Title , TitleFlipX , TitleFlipY , TitleFlipXY , Clamp

and the second by include : Perspective , Bilinear

We can't define tow enums in th same namespace by the same name ..!! why here we can ?? !!

and How can I tell VS which enum of them I want ?

+1  A: 

Actually, one is named WrapMode, and the other, WarpMode. Note the transposed 'r' and 'a'.

Ani
+1  A: 

First is WrapMode and the second is WarpMode.

Yuriy Faktorovich