本文介绍了我该如何翻译VB.Net的CTYPE()到C#的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在 VB NET这个code段

CType(pbImageHolder.Image, Bitmap).SetPixel(curPoint.X, curPoint.Y, Color.Purple)

什么是 C#

感谢你在前进。

推荐答案

在VB.Net CTYPE(对象类型)强制转换对象为特定类型。

In VB.Net CType(object, type) casts an object to a specific type.

有两种方法可以做到这一点在C#:

There are two ways to accomplish this in C#:

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

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

这篇关于我该如何翻译VB.Net的CTYPE()到C#的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-31 19:44