标签: c# arrays extension-methods
我需要在byte []上编写扩展方法。这可能吗?
答案 0 :(得分:5)
public static class Extensions { public static void Method(this byte[] current) { } }
答案 1 :(得分:1)
当然,只需创建byte[]类型的第一个参数。
byte[]