关于 WarpMode 枚举的问题
System.Drawing.Drawing2D 命名空间中有两个名为“WarpMode”的枚举,
第一个包括: Title 、 TitleFlipX 、 TitleFlipY 、 TitleFlipXY 、 Clamp
和第二个包括: 透视,双线性
我们不能在同一个名称空间中用相同的名称定义两个枚举..!为什么在这里我们可以? !!
我如何告诉 VS 我想要其中的哪个枚举?
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 ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
第一个是
WrapMode
,第二个是WarpMode
。First is
WrapMode
and the second isWarpMode
.实际上,一个名为
WrapMode
,另一个WarpMode
。请注意转置的“r”和“a”。Actually, one is named
WrapMode
, and the other,WarpMode
. Note the transposed 'r' and 'a'.