作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我有一个 WriteableBitmap
我使用不安全的方法来绘制像素。基本部分如下所示:
private unsafe void DrawBitmap(WriteableBitmap bitmap, byte[] pixels)
{
// Boilerplate omitted...
fixed (byte* pPixels = pixels)
{
for (int y = 0; y < height; y++)
{
var row = pPixels + (y * width);
for (int x = 0; x < width; x++)
{
*(row + x) = color[y + height * x];
}
}
}
bitmap.WritePixels(new Int32Rect(0, 0, width, height), pixels, width*pf.BitsPerPixel/8, 0);
}
但不确定用户要绘制的是byte
类型的, 使这个方法通用(即 DrawBitmap<T>
)是有意义的,但我怎样才能使指针成为 pPixels
类型 T*
?
有没有其他技巧可以使我的 DrawBitmap
通用?
最佳答案
考虑使用 overloads .
public void MethodA(byte[] pPixels) {}
public void MethodA(int[] pPixels {}
//etc...
关于c# - 如何在 C# 中创建泛型指针?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14953375/
我是一名优秀的程序员,十分优秀!