2

我需要在 byte[] 上写一个扩展方法。那可能吗?

4

2 回答 2

5

是的,只需这样做:

public static class Extensions
{
    public static void Method(this byte[] current)
    {

    }
}
于 2008-10-29T23:59:25.987 回答
1

当然,只需制作 type 的第一个参数byte[]

于 2008-10-29T23:51:11.027 回答