如何将VB.Net的CType()转换为C#

前端之家收集整理的这篇文章主要介绍了如何将VB.Net的CType()转换为C#前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在VB NET中有这段代码
CType(pbImageHolder.Image,Bitmap).SetPixel(curPoint.X,curPoint.Y,Color.Purple)

什么是C#中的适当代码

先谢谢你.

在VB.Net中,CType(object,type)将对象强制转换为特定类型.

在C#中有两种方法可以实现这一点:

Bitmap image = pbImageHolder.Image as Bitmap;
image.SetPixel(curPoint.X,Color.Purple);

要么

Bitmap image = (Bitmap)(pbImageHolder.Image);
image.SetPixel(curPoint.X,Color.Purple);
原文链接:https://www.f2er.com/vb/255803.html

猜你在找的VB相关文章